Skip to content

ci: fix test on Ubuntu #110

ci: fix test on Ubuntu

ci: fix test on Ubuntu #110

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
node: ["16", "18", "20", "22", "24"]
os: ["windows-latest", "ubuntu-latest"]
runs-on: ${{ matrix.os }}
name: Test on Node.js ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Set yarn to ignore engines version check
run: yarn config set ignore-engines true
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Check style
run: yarn format --check