Skip to content

chore(deps): bump ejs from 3.1.9 to 3.1.10 #3

chore(deps): bump ejs from 3.1.9 to 3.1.10

chore(deps): bump ejs from 3.1.9 to 3.1.10 #3

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