Skip to content

removed exclamation, deleting secret from previous commits #597

removed exclamation, deleting secret from previous commits

removed exclamation, deleting secret from previous commits #597

Workflow file for this run

name: Source Code Check
on:
- push
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm i
- run: npm run lint
tsc:
name: Run Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm i
- run: npm run typecheck
prettier:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm i
- run: npm run format:check
test:
name: Run API tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- run: npm i
- run: npm run test