scoreInfos -> scoreInfo, since now there can only be one per play #1509
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: Node CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: <registry url> | |
- name: Install dependencies | |
run: yarn install | |
- name: ESLint | |
run: yarn lint-js | |
- name: TypeScript | |
run: yarn lint-ts | |
- name: Unit tests | |
run: yarn test |