Skip to content

Commit

Permalink
fixing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftyp committed Sep 17, 2023
1 parent 0f94e26 commit 811f22b
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:

runs-on: ubuntu-latest

container:
image: mcr.microsoft.com/playwright:v1.38.0-jammy

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -19,10 +22,11 @@ jobs:

- run: yarn install
- run: yarn build

- name: Unit Test
run: yarn test:unit

playwright:
chrome:

runs-on: ubuntu-latest

Expand All @@ -48,5 +52,23 @@ jobs:
- name: Chrome Test
run: yarn test:browser --project=chrome

firefox:

runs-on: ubuntu-latest

container:
image: mcr.microsoft.com/playwright:v1.38.0-jammy

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'

- run: yarn install
- run: yarn build

- name: Firefox Test
run: yarn test:browser --project=firefox

0 comments on commit 811f22b

Please sign in to comment.