build: build on node v22 + v24 #10
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 | |
| - main | |
| - feature/* | |
| - bugfix/* | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: ['22', '24'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install | |
| - run: npx playwright install | |
| - run: npm run build --workspaces --if-present | |
| - run: npm test --workspaces --if-present | |
| - run: npm run acceptance-test --workspaces --if-present | |
| - run: npm run coverage --workspaces --if-present | |
| - run: npm run performance-test --workspaces --if-present | |
| - run: npm run lint --workspaces --if-present |