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 6c549d8 commit c9882eaCopy full SHA for c9882ea
.github/workflows/e2e-playwright.yml
@@ -35,14 +35,24 @@ jobs:
35
working-directory: ./e2e-playwright
36
run: npm install
37
38
+ - name: Cache Playwright browser binaries
39
+ uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
40
+ id: playwright-cache
41
+ with:
42
+ path: ~/.cache/ms-playwright
43
+ key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
44
+
45
46
- name: Install Playwright browsers
47
48
run: npx playwright install
49
50
- name: Build with Gradle
51
id: build_app
52
run: |
- ./gradlew clean build \
53
+ ./gradlew build \
54
+ -x :e2e-tests:check \
55
+ -x :e2e-tests:build \
56
-x test \
57
-Pbuild-docker-images=true \
58
-Pinclude-frontend=true \
0 commit comments