We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60147b commit 07616aaCopy full SHA for 07616aa
1 file changed
.github/workflows/maven.yml
@@ -34,6 +34,13 @@ jobs:
34
with:
35
node-version: 14
36
- run: npm i -g npm@8
37
+ - name: Cache dependencies
38
+ uses: actions/cache@v2
39
+ with:
40
+ path: ~/.npm
41
+ key: npm-${{ hashFiles('package-lock.json') }}
42
+ restore-keys: npm-
43
+ - run: npm ci
44
- run: npm run build
45
- run: npx playwright install --with-deps ${{ matrix.browser }} chromium
46
- run: npm run test -- --project=${{ matrix.browser }}
0 commit comments