-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (36 loc) · 999 Bytes
/
unit_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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: ./SpeciesHelper
run: npm install
- working-directory: ./SpeciesHelper
run: npm test
name: SpeciesHelper 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