Skip to content

feat: Improve visibility of the user guide #6786

feat: Improve visibility of the user guide

feat: Improve visibility of the user guide #6786

Workflow file for this run

name: Unit tests
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version-file: ".node-version"
- name: yarn install
run: |
corepack enable
# try and avoid timeout errors
yarn config set httpTimeout 100000
yarn install --immutable
yarn build:ts
- name: run tests
run: |
yarn test