npm(deps-dev): bump lint-staged from 16.1.6 to 16.2.4 #95
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, development] | |
| pull_request: | |
| branches: [main, development] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: Tests on Node 22 | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v5 | |
| - name: Set Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| registry-url: https://npm.pkg.github.com | |
| cache-dependency-path: package-lock.json | |
| env: | |
| RUNNER_TEMP: "/tmp/" | |
| - name: Install Node Modules | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm ci | |
| - name: Run Tests | |
| run: npm test |