Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

build: bump actions/checkout from 3.5.3 to 3.6.0 #57

build: bump actions/checkout from 3.5.3 to 3.6.0

build: bump actions/checkout from 3.5.3 to 3.6.0 #57

Workflow file for this run

name: 'TS Lint, Test, and Format'
on:
pull_request:
workflow_dispatch:
jobs:
lint-test-format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run lint:fix
- run: npm run tsc
- run: npm run test
- run: npm run fmt