fix #229 *#: in front of {{Unblock reviewed}} causes display glitch #512
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: Unit Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- working-directory: ./DraftCleaner | |
run: npm install | |
- working-directory: ./DraftCleaner | |
run: npm test | |
name: DraftCleaner unit tests | |
- working-directory: ./GANReviewTool | |
run: npm install | |
- working-directory: ./GANReviewTool | |
run: npm test | |
name: GANReviewTool unit tests | |
- working-directory: ./MarkFreeUseRationale | |
run: npm install | |
- working-directory: ./MarkFreeUseRationale | |
run: npm test | |
name: MarkFreeUseRationale unit tests | |
- working-directory: ./SpeciesHelper | |
run: npm install | |
- working-directory: ./SpeciesHelper | |
run: npm test | |
name: SpeciesHelper unit tests | |
- working-directory: ./UnblockReview | |
run: npm install | |
- working-directory: ./UnblockReview | |
run: npm test | |
name: UnblockReview unit tests | |
- working-directory: ./UserRightsDiff | |
run: npm install | |
- working-directory: ./UserRightsDiff | |
run: npm test | |
name: UserRightsDiff unit tests | |
- working-directory: ./VoteCounter | |
run: npm install | |
- working-directory: ./VoteCounter | |
run: npm test | |
name: VoteCounter unit tests |