#6 and #7, Scoring and view other answers on score screen toggles, disabled by default #4
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: Run Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.13.0] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests with Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install -g yarn | |
- run: yarn install | |
# - run: yarn test-ci # no tests....... yet | |
- run: yarn build |