Use the version of black we actually use in linter check, not "stable". #529
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 JavaScript tests | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
- run: npm install | |
working-directory: ./project/thscoreboard | |
- run: npm ci | |
working-directory: ./project/thscoreboard | |
- run: npm test | |
working-directory: ./project/thscoreboard |