File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 branches :
66 - master
77
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
812permissions :
913 contents : write
1014
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Unit tests
22
33on : pull_request
44
5+ concurrency :
6+ group : ${{ github.workflow }}-${{ github.ref }}
7+ cancel-in-progress : true
8+
59jobs :
610 full_test_run :
711
1822 - name : NPM install
1923 run : npm ci
2024
25+ - name : Cache Playwright browsers
26+ uses : actions/cache@v4
27+ id : playwright-cache
28+ with :
29+ path : ~/.cache/ms-playwright
30+ key : ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
31+ restore-keys : |
32+ ${{ runner.os }}-playwright-
33+
2134 - name : Install playwright browsers
2235 run : npx playwright install --with-deps
2336
You can’t perform that action at this time.
0 commit comments