build(deps): bump the minor-patches group across 1 directory with 20 updates #364
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: | |
| pull_request: | |
| branches: [ main, develop ] | |
| push: | |
| branches: [ main, develop ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies (frozen) | |
| run: npm ci --ignore-scripts | |
| # - name: Lint | |
| #run: npm run lint | |
| - name: Security audit | |
| run: npm audit --omit=dev || true | |
| #- name: Run tests | |
| # run: npm run test:ci | |
| - name: Build | |
| run: npm run build | |
| - name: Upload coverage | |
| uses: actions/upload-artifact@v5 | |
| if: always() | |
| with: | |
| name: coverage | |
| path: coverage/ | |
| retention-days: 7 |