Skip to content

Commit eef9725

Browse files
authored
Build: Separate the install step from running tests in GitHub Actions
Also, update the "Run test" label to "Run tests". Closes gh-4992
1 parent 5d5ea01 commit eef9725

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/node.js.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,13 @@ jobs:
5959
wget --no-verbose $FIREFOX_SOURCE_URL -O - | tar -jx -C ${HOME}
6060
if: "contains(matrix.NAME, 'Firefox ESR')"
6161

62-
- name: Run test
62+
- name: Install dependencies
63+
run: |
64+
npm install
65+
66+
- name: Run tests
6367
env:
6468
BROWSERS: ${{ matrix.BROWSERS }}
6569
run: |
6670
export PATH=${HOME}/firefox:$PATH
67-
npm install
6871
npm run ${{ matrix.NPM_SCRIPT }}

0 commit comments

Comments
 (0)