Skip to content

Commit bc31172

Browse files
committed
chore: disable firefox in ci
1 parent 0c74b82 commit bc31172

File tree

2 files changed

+5
-25
lines changed

2 files changed

+5
-25
lines changed

.github/workflows/e2e.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,7 @@ jobs:
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"
@@ -49,17 +39,7 @@ jobs:
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

app/playwright.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
testDir: './tests',
88
fullyParallel: true,
99
forbidOnly: !!process.env.CI,
10-
workers: process.env.WORKERS ? parseInt(process.env.WORKERS) : 1,
10+
workers: process.env.WORKERS ? parseInt(process.env.WORKERS) : 2,
1111
reporter: 'html',
1212
use: {
1313
baseURL: 'http://127.0.0.1:3000',
@@ -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'] },

0 commit comments

Comments
 (0)