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.
2 parents 45412f0 + 4e75141 commit 8ae9b1aCopy full SHA for 8ae9b1a
.github/workflows/ci.yml
@@ -47,11 +47,15 @@ jobs:
47
- name: Build
48
run: npm run build
49
50
- - name: playwright install, required for e2e tests
51
- run: npx playwright install chromium --with-deps
+ # this is not needed when using the playwright container; it has browsers pre-installed
+ # - name: playwright install, required for e2e tests
52
+ # run: npx playwright install chromium --with-deps
53
54
- name: E2E Tests
- run: npm run test:e2e
55
+ uses: docker://mcr.microsoft.com/playwright:v1.56.1-noble
56
+ with:
57
+ args: npm run test:e2e
58
+
59
60
# release does a second build due to the prepublishOnly script.
61
# that's okay we want that to happen to prevent publishing stale local builds.
0 commit comments