build(deps): bump node from 20 to 25 in the alldependencies group across 1 directory #55
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: NodeJS version variation testing | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - 'master' | |
| workflow_dispatch: | |
| jobs: | |
| matrix-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22, 24] | |
| container: node:${{ matrix.node-version }} | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: nodejs version | |
| run: | | |
| node -v | |
| - name: install pnpm | |
| run: | | |
| npm install -g pnpm | |
| - name: install dependencies | |
| run: | | |
| pnpm install | |
| - name: testing | |
| run: | | |
| pnpm dev:test | |
| pnpm dev:format | |
| pnpm dev:lint | |
| pnpm build | |
| echo "All tests passed!" |