chore(release): 0.4.0 #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: Build | |
| on: | |
| push: | |
| branches: [ main ] | |
| tags: | |
| - "*" | |
| pull_request: | |
| jobs: | |
| Integration-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Node.js modules cache | |
| uses: actions/cache@v4 | |
| id: modules-cache | |
| with: | |
| path: ${{ github.workspace }}/node_modules | |
| key: ${{ runner.os }}-${{ matrix.node-version }}-modules-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ matrix.node-version }}-modules | |
| - name: Install Node.js packages | |
| if: ${{ steps.modules-cache.outputs.cache-hit != 'true' }} | |
| run: npm ci | |
| - name: Audit packages | |
| run: npm audit --audit-level=high | |
| continue-on-error: true | |
| - name: Lint and test | |
| run: npm test | |
| - name: Confirm integration | |
| if: ${{ success() }} | |
| run: npm run test:integration |