deps(deps-dev): bump @types/node from 22.16.3 to 24.9.1 #88
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: Quality Checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| eslint: | |
| name: ESLint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Common Setup Node and pnpm | |
| uses: ./.github/actions/common-setup | |
| with: | |
| pnpm-version: 10.2.0 | |
| node-version: "22" | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Run ESLint Check | |
| run: pnpm run lint | |
| types: | |
| name: TypeScript Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Common Setup Node and pnpm | |
| uses: ./.github/actions/common-setup | |
| with: | |
| pnpm-version: 10.2.0 | |
| node-version: "22" | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Run TypeScript Check | |
| run: pnpm run type-check | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18, 20, 21, 22] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Common Setup Node and pnpm | |
| uses: ./.github/actions/common-setup | |
| with: | |
| pnpm-version: 10.2.0 | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Run Tests | |
| run: pnpm test |