Skip to content

Commit 1fe1613

Browse files
authored
Update GitHub actions to use Node 12 (#2457)
1 parent 26958c6 commit 1fe1613

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/pull-request.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ on: [pull_request]
55
jobs:
66
Node_Tests_Windows:
77
runs-on: windows-latest
8-
8+
99
steps:
1010
- uses: actions/checkout@v2
11-
11+
1212
- uses: actions/cache@v1
1313
with:
1414
path: ~/.npm
1515
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
1616
restore-keys: |
1717
${{ runner.os }}-node-
18-
18+
1919
- uses: actions/setup-node@v1
2020
with:
2121
node-version: 8.x
@@ -30,7 +30,7 @@ jobs:
3030

3131
Full_Suite_Mac:
3232
runs-on: macos-latest
33-
33+
3434
steps:
3535
- uses: actions/checkout@v2
3636

@@ -40,15 +40,15 @@ jobs:
4040
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4141
restore-keys: |
4242
${{ runner.os }}-node-
43-
43+
4444
- uses: actions/cache@v1
4545
with:
4646
path: ~/.selenium-assistant
4747
key: ${{ runner.os }}
48-
48+
4949
- uses: actions/setup-node@v1
5050
with:
51-
node-version: 13.x
51+
node-version: 12.x
5252

5353
- name: Setup
5454
run: |

0 commit comments

Comments
 (0)