Skip to content

Commit 1b4fe7d

Browse files
committed
Install node in the e2e tests
1 parent 44a7faa commit 1b4fe7d

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v2
20+
- uses: actions/setup-node@v2
21+
with:
22+
node-version: 16
23+
registry-url: https://registry.npmjs.org/
2024
- name: npm install test project
2125
run : npm ci
2226
working-directory: ./e2e/test-projects/${{ matrix.package }}
@@ -45,6 +49,10 @@ jobs:
4549

4650
steps:
4751
- uses: actions/checkout@v2
52+
- uses: actions/setup-node@v2
53+
with:
54+
node-version: 16
55+
registry-url: https://registry.npmjs.org/
4856
- name: npm install test project
4957
run : npm ci
5058
working-directory: ./e2e/test-projects/${{ matrix.package }}
@@ -72,6 +80,10 @@ jobs:
7280

7381
steps:
7482
- uses: actions/checkout@v2
83+
- uses: actions/setup-node@v2
84+
with:
85+
node-version: 16
86+
registry-url: https://registry.npmjs.org/
7587
- name: npm install test project
7688
run : npm ci
7789
working-directory: ./e2e/test-projects/${{ matrix.package }}

0 commit comments

Comments
 (0)