File tree Expand file tree Collapse file tree 4 files changed +9
-43
lines changed
Expand file tree Collapse file tree 4 files changed +9
-43
lines changed Original file line number Diff line number Diff line change 77 - dev
88
99jobs :
10- lint :
11- runs-on : ubuntu-latest
12- container : node:14.16-slim
13-
14- steps :
15- - uses : actions/checkout@v2
16-
17- - name : Install Dependencies
18- run : npm ci
19-
20- - name : Lint
21- run : npm run lint
22-
2310 test :
2411 runs-on : ubuntu-latest
25- container : node:14.16-slim
12+ container : golang:1-alpine
2613
2714 steps :
2815 - uses : actions/checkout@v2
2916
3017 - name : Install Dependencies
31- run : npm ci
18+ run : go mod download
3219
3320 - name : Lint
34- run : npm run test
21+ run : go test ./... -v
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 run-tests :
1010 name : Run tests
1111 runs-on : ubuntu-latest
12- container : node:14.16-slim
12+ container : golang:1-alpine
1313
1414 steps :
1515 - uses : actions/checkout@v2
1616
1717 - name : Install Dependencies
18- run : npm ci
18+ run : go mod download
1919
2020 - name : Run Tests
21- run : npm run test
21+ run : go test ./... -v
Original file line number Diff line number Diff line change 99 run-tests :
1010 name : Run tests on master
1111 runs-on : ubuntu-latest
12- container : node:14.16-slim
12+ container : golang:1-alpine
1313
1414 steps :
1515 - uses : actions/checkout@v2
1616
1717 - name : Install Dependencies
18- run : npm ci
18+ run : go mod download
1919
2020 - name : Run Tests
21- run : npm run test
21+ run : go test ./... -v
You can’t perform that action at this time.
0 commit comments