Skip to content

chore(deps): update node.js to v24 #3778

chore(deps): update node.js to v24

chore(deps): update node.js to v24 #3778

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
browser: [chromium, firefox]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 24.12.0
cache: yarn
- name: Install Dependencies
run: yarn --network-timeout 100000
env:
YARN_CACHE_FOLDER: .cache/yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Tests
run: yarn test-browser --browser.name=${{ env.BROWSER }} --browser.headless --coverage
env:
BROWSER: ${{ matrix.browser }}
- name: Codecov
uses: codecov/codecov-action@v4
build-lint:
name: Build and lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 24.12.0
- name: Install Dependencies
run: yarn --network-timeout 100000
- name: Lint
run: yarn lint
- name: Check types
run: yarn check-types
- name: Build Project
run: yarn build