We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc8254 commit 49018f1Copy full SHA for 49018f1
.github/workflows/test-pr.yml
@@ -49,14 +49,21 @@ jobs:
49
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
50
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
51
52
- - name: Install Dependencies
+ - name: npm ci
53
shell: "bash"
54
run: |
55
export PATH="/usr/local/opt/bison/bin:/usr/local/opt/flex/bin:$PATH"
56
+ sudo chmod -R 777 /Users/runner/Library/Caches
57
npm ci
- sudo mkdir -p /Users/runner/Library/Caches/ms-playwright
58
- sudo chmod -R 777 /Users/runner/Library/Caches/ms-playwright
+
59
+ - name: npx playwright install
60
+ shell: "bash"
61
+ run: |
62
sudo npx playwright install chromium --with-deps
63
64
+ - name: install-build-deps
65
66
67
npm run install-build-deps
68
69
- name: Lint
0 commit comments