chore: update to node 14 to enable playwright webkit tests in ci
This commit is contained in:
parent
58f092248e
commit
596eb2a028
1 changed files with 6 additions and 4 deletions
10
.github/workflows/verify.yml
vendored
10
.github/workflows/verify.yml
vendored
|
|
@ -9,10 +9,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node 12.x
|
||||
- name: Setup Node 14.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12.x
|
||||
node-version: 14.x
|
||||
|
||||
- name: Get yarn cache directory path
|
||||
id: yarn-cache-dir-path
|
||||
|
|
@ -41,10 +41,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node 12.x
|
||||
- name: Setup Node 14.x
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12.x
|
||||
node-version: 14.x
|
||||
|
||||
- name: Get yarn cache directory path
|
||||
id: yarn-cache-dir-path
|
||||
|
|
@ -61,6 +61,8 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: yarn --frozen-lockfile
|
||||
|
||||
- uses: microsoft/playwright-github-action@v1
|
||||
|
||||
- name: Test
|
||||
run: yarn test:browser
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue