v17.2.1 #1036
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] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| node: ["24.x"] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v6 | |
| - name: Set up node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build & Lint | |
| run: npm run build && npm run lint | |
| - name: Install webkit | |
| run: npx playwright install-deps webkit | |
| - name: Install browser dependencies | |
| run: npx playwright install | |
| - name: Test Development | |
| run: npm run test | |
| env: | |
| TEST_RPC_TARGET: ${{ secrets.TEST_RPC_TARGET }} | |
| - name: Test Production | |
| run: npm run test-production | |
| env: | |
| TEST_RPC_TARGET: ${{ secrets.TEST_RPC_TARGET }} |