We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2d554f commit 07c06e3Copy full SHA for 07c06e3
1 file changed
.github/workflows/e2e.yml
@@ -12,13 +12,13 @@ jobs:
12
- uses: actions/checkout@v3
13
- uses: actions/setup-node@v3
14
with:
15
- node-version: '14.x'
+ node-version: '18.x'
16
- name: Install dependencies
17
- run: npm ci
+ run: npm install -g yarn && yarn install --frozen-lockfile
18
- name: Install Playwright Browsers
19
- run: npx playwright install --with-deps
+ run: yarn playwright install --with-deps
20
- name: Run Playwright tests
21
- run: npm run test
+ run: yarn test
22
- uses: actions/upload-artifact@v3
23
if: always()
24
0 commit comments