Skip to content

Commit 9ed75cd

Browse files
committed
ci: explicitly use node v14 for playwright
1 parent dfc2b45 commit 9ed75cd

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/playwright.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,16 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
1617
- uses: actions/setup-node@v3
1718
env:
1819
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: "true"
1920
with:
20-
node-version: "14.x"
21-
args: install
21+
node-version: "14"
2222

23-
- name: Install dependencies
24-
uses: borales/[email protected]
25-
with:
26-
cmd: install # will run `yarn install` command
23+
- run: yarn install --frozen-lockfile
2724

28-
- name: Build
29-
uses: borales/[email protected]
30-
with:
31-
cmd: build:chrome # will run `yarn build` command
25+
- run: yarn build:chrome
3226

3327
- name: Test Code
3428
uses: mujo-code/puppeteer-headful@v2

0 commit comments

Comments
 (0)