Update dependencies and enforce release age #365
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: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ['25.8.2'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js v${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Dependencies And Compile TS | |
| run: npm ci --ignore-scripts | |
| - name: Verify Registry Signatures | |
| run: npm audit signatures | |
| - name: Audit Production Dependencies | |
| run: npm audit --omit=dev --audit-level=critical | |
| - name: Check Code Format | |
| run: npm run check-format | |
| - name: Run Tests | |
| run: npm run test |