Skip to content

Commit 106779c

Browse files
XhmikosRTrott
authored andcommitted
Update test.yml
1 parent 2e211c4 commit 106779c

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/test.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,31 @@ on:
77
pull_request:
88

99
env:
10-
CI: true
11-
NODE: 12.x
10+
FORCE_COLOR: 2
11+
NODE: 12
1212

1313
jobs:
1414
test:
1515
runs-on: ubuntu-latest
1616

1717
steps:
1818
- name: Clone repository
19-
uses: actions/checkout@v2.4.0
19+
uses: actions/checkout@v2
2020

2121
- name: Clone nodejs/node repository
22-
uses: actions/checkout@v2.4.0
22+
uses: actions/checkout@v2
2323
with:
2424
repository: nodejs/node
2525
path: tmp
2626

2727
- name: Set up Node.js
28-
uses: actions/setup-node@v2.5.0
28+
uses: actions/setup-node@v2
2929
with:
3030
node-version: "${{ env.NODE }}"
3131
cache: "npm"
3232

33-
- run: node --version
34-
- run: npm --version
35-
3633
- name: Install npm dependencies
3734
run: npm ci
3835

3936
- name: Run tests
40-
run: npm run test
37+
run: npm test

0 commit comments

Comments
 (0)