feat: idb + github sync with atomic open and push to remote. #156
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| - next | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.1 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: '24.14.0' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Save error log | |
| uses: actions/upload-artifact@v6.0.0 | |
| if: ${{ failure() }} | |
| with: | |
| name: npm-debug-log-${{ hashFiles('package-lock.json') }} | |
| path: npm-debug.log | |
| - name: Lint | |
| run: npm run lint | |
| - name: Build | |
| run: npm run build:esm |