Skip to content

Run Tests

Run Tests #9

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
jobs:
test:
name: Testing
runs-on: ubuntu-latest
timeout-minutes: 20
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "yarn"
cache-dependency-path: "tests/yarn.lock"
- name: install dependencies
run: yarn --immutable
working-directory: tests
- name: test
run: yarn test
working-directory: tests