chore: update to node 14 to enable playwright webkit tests in ci

This commit is contained in:
Thomas Allmer 2020-10-09 16:34:08 +02:00
parent 58f092248e
commit 596eb2a028

View file

@ -9,10 +9,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Node 12.x - name: Setup Node 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 12.x node-version: 14.x
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
@ -41,10 +41,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Node 12.x - name: Setup Node 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 12.x node-version: 14.x
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
@ -61,6 +61,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: yarn --frozen-lockfile run: yarn --frozen-lockfile
- uses: microsoft/playwright-github-action@v1
- name: Test - name: Test
run: yarn test:browser run: yarn test:browser