Skip to content

Commit 3063972

Browse files
authored
Swap node versions in our CI tests (#2444)
* Swap node versions in CI * Update selenium-assistant * Switch to npm i for Windows
1 parent 43406c7 commit 3063972

File tree

3 files changed

+18
-40
lines changed

3 files changed

+18
-40
lines changed

.github/workflows/pull-request.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
1919
- uses: actions/setup-node@v1
2020
with:
21-
node-version: 13.x
21+
node-version: 8.x
2222

2323
- name: Setup
2424
run: |
25-
npm ci
25+
# Use `npm i` to work around https://github.com/npm/cli/issues/558
26+
npm i
2627
gulp build
2728
2829
- run: npx gulp test-node
@@ -47,7 +48,7 @@ jobs:
4748

4849
- uses: actions/setup-node@v1
4950
with:
50-
node-version: 8
51+
node-version: 13.x
5152

5253
- name: Setup
5354
run: |

package-lock.json

Lines changed: 13 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"rollup-plugin-babel": "^4.3.3",
103103
"rollup-plugin-terser": "^5.2.0",
104104
"rollup-plugin-typescript2": "^0.25.3",
105-
"selenium-assistant": "^6.0.0",
105+
"selenium-assistant": "^6.1.0",
106106
"semver": "^7.1.2",
107107
"serve-index": "^1.9.1",
108108
"service-worker-mock": "^1.9.3",

0 commit comments

Comments
 (0)