Skip to content

fix: Correct syntax errors in temporal validation integration (Phase … #7

fix: Correct syntax errors in temporal validation integration (Phase …

fix: Correct syntax errors in temporal validation integration (Phase … #7

Workflow file for this run

name: Quality Assurance
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, ready_for_review]
jobs:
format-typecheck-test:
name: Formatting, types and tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node & NPM
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install lib dependencies
run: npm ci
- run: npm run format:check
- run: npm run typecheck
- run: npm run lint
- run: npm run test:browser
- run: npm run test:node