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 2c310fc commit 193ca1bCopy full SHA for 193ca1b
.github/workflows/playwright.yml
@@ -42,6 +42,14 @@ jobs:
42
- name: Checkout repo
43
uses: actions/checkout@v3
44
45
+ - name: Cache node_modules
46
+ uses: actions/cache@v4
47
+ with:
48
+ path: ~/.npm
49
+ key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
50
+ restore-keys: |
51
+ ${{ runner.os }}-npm-
52
+
53
- name: Build Docker Image
54
run: docker build -t my-playwright-runner -f Dockerfile.playwright .
55
@@ -79,4 +87,4 @@ jobs:
79
87
with:
80
88
github_token: ${{ secrets.GITHUB_TOKEN }}
81
89
publish_dir: ./allure-report
82
- publish_branch: gh-pages
90
+ publish_branch: gh-pages
0 commit comments