Skip to content

fix: change canvas lib #5

fix: change canvas lib

fix: change canvas lib #5

Workflow file for this run

name: Check types
on: [pull_request]
jobs:
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
- name: Prepare
run: |
corepack enable
# try and avoid timeout errors
yarn config set httpTimeout 100000
yarn --immutable
yarn build:ts
- name: Check types (server)
run: |
cd companion
yarn check-types
- name: Check types (client)
run: |
cd webui
yarn check-types