Skip to content

7.0.0

7.0.0 #339

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.12]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install workspace
run: yarn
- name: Build
run: yarn build
- name: Test
run: yarn test