Skip to content

Test and tinker page #40

Test and tinker page

Test and tinker page #40

Workflow file for this run

name: Test core
on: [push, pull_request]
jobs:
test:
defaults:
run:
working-directory: ./packages/core
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '17.x'
- name: remove overlying workspace
run: rm ../../yarn.lock && rm ../../package.json
- name: Install dependencies
run: yarn
- name: Build
run: yarn tsc
- name: Run tests
run: yarn test