Skip to content

Commit

Permalink
ci: fix playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKreil committed Sep 23, 2024
1 parent 4fa2550 commit 58841be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,13 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: npx playwright install --with-deps firefox

- name: Run unit tests
run: npm run test:unit

- name: Run integration tests
run: npm run test:integration
env:
HOME: /root

build:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig({
projects: [
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
use: { ...devices['Desktop Firefox'] }
}
]
});

0 comments on commit 58841be

Please sign in to comment.