File tree Expand file tree Collapse file tree 2 files changed +4
-24
lines changed
Expand file tree Collapse file tree 2 files changed +4
-24
lines changed Original file line number Diff line number Diff line change 1818 - name : Set up Docker
1919 uses : docker/setup-buildx-action@v2
2020
21- - name : Cache Aztec CLI
22- uses : actions/cache@v3
23- id : aztec-cache
24- with :
25- path : ~/.aztec
26- key : ${{ runner.os }}-aztec-${{ hashFiles('**/yarn.lock') }}
27- restore-keys : |
28- ${{ runner.os }}-aztec-
29-
3021 - name : Install Aztec CLI
31- if : steps.aztec-cache.outputs.cache-hit != 'true'
3222 run : |
3323 curl -s https://install.aztec.network > tmp.sh
3424 bash tmp.sh <<< yes "yes"
4939 working-directory : ./app
5040 run : npm install -g yarn && yarn
5141
52- - name : Cache Playwright browsers
53- uses : actions/cache@v3
54- id : playwright-cache
55- with :
56- path : ~/.cache/ms-playwright
57- key : ${{ runner.os }}-playwright-${{ hashFiles('**/yarn.lock') }}
58- restore-keys : |
59- ${{ runner.os }}-playwright-
60-
6142 - name : Install Playwright Browsers
62- if : steps.playwright-cache.outputs.cache-hit != 'true'
6343 working-directory : ./app
6444 run : yarn playwright install --with-deps
6545
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ export default defineConfig({
2020 name : 'chromium' ,
2121 use : { ...devices [ 'Desktop Chrome' ] } ,
2222 } ,
23- {
24- name : 'firefox' ,
25- use : { ...devices [ 'Desktop Firefox' ] } ,
26- } ,
23+ // {
24+ // name: 'firefox',
25+ // use: { ...devices['Desktop Firefox'] },
26+ // },
2727 {
2828 name : 'webkit' ,
2929 use : { ...devices [ 'Desktop Safari' ] } ,
You can’t perform that action at this time.
0 commit comments