Skip to content

misc: increase test timeout as speculative fix #8

misc: increase test timeout as speculative fix

misc: increase test timeout as speculative fix #8

Workflow file for this run

name: Client Workflow
on:
push:
branches:
- main
jobs:
client:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Dependencies
run: npm ci
working-directory: client
- name: Lint
run: npm run lint
working-directory: client
- name: Test
run: npm run test
working-directory: client
- name: Build
run: npm run build
working-directory: client