Skip to content

Fix test

Fix test #21

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: <registry url>
- name: Install dependencies
run: yarn install
- name: Tests
run: yarn test
- name: Build
run: yarn build
- name: Build site
run: yarn build-site