chore(deps-dev): bump @types/node from 24.10.0 to 25.0.3 #112
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: ["*"] | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| name: ✅ Validate project | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [20.x, 22.x, 24.x] | |
| steps: | |
| - name: ⬇️ Checkout project | |
| uses: actions/checkout@v4 | |
| - name: 🧙♂️ Use node version | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - name: 📦 Install dependencies | |
| run: npm ci | |
| - name: 📑 Check lint | |
| run: npm run lint | |
| - name: 🗃 Check typescript | |
| run: npm run build | |
| - name: 🧪 Test types | |
| run: npm run test:types | |
| test: | |
| name: 🧑🔬 Test project | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| version: [20.x, 22.x, 24.x] | |
| needs: validate | |
| steps: | |
| - name: ⬇️ Checkout project | |
| uses: actions/checkout@v4 | |
| - name: 🧙♂️ Use node version | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - name: 📦 Install dependencies | |
| run: npm ci | |
| - name: 🧪 Run tests | |
| run: npm run test | |
| coverage: | |
| runs-on: ubuntu-latest | |
| needs: validate | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - run: npm ci | |
| - run: npm run coverage | |
| - name: Upload coverage report artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-html | |
| path: coverage/ |