Skip to content

Add CI step

Add CI step #2

Workflow file for this run

name: CI
on: push
jobs:
test-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.tools-version'
- run: yarn test:node
test-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.tools-version'
- run: yarn test:web