turn on strict mode #1679
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: API Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test_api: | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '19' | |
cache: 'npm' | |
cache-dependency-path: 'quadratic-api/' | |
- name: Install Dependencies | |
run: | | |
cd quadratic-api | |
npm install | |
- name: Run Tests | |
run: | | |
cd quadratic-api | |
npm run docker:test:ci |