Skip to content

v17.2.1

v17.2.1 #1036

Workflow file for this run

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 }}