Skip to content

fix test workflow

fix test workflow #8

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable && yarn --version
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install modules
run: yarn install --immutable
- name: Run tests
run: yarn test