Skip to content

Commit

Permalink
chore(actions): merge from template .github/workflows/ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Mar 7, 2024
1 parent 947d540 commit fd3b1aa
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/ci.yml
Expand Up @@ -34,6 +34,25 @@ jobs:
flag-name: run-${{ matrix.test_number }}
path-to-lcov: build/coverage/lcov.info
parallel: true
test-browser:
runs-on: ubuntu-latest
strategy:
matrix:
browser:
- chrome
- firefox
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.11.1
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npx playwright install
- run: npm run test:browser-ava --if-present
env:
BROWSER: ${{ matrix.browser }}
release:
needs:
- test-browser
Expand Down Expand Up @@ -68,22 +87,3 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/coverage/lcov.info
parallel-finished: true
test-browser:
runs-on: ubuntu-latest
strategy:
matrix:
browser:
- chrome
- firefox
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.2
with:
node-version: 20.11.1
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npx playwright install
- run: npm run test:browser-ava --if-present
env:
BROWSER: ${{ matrix.browser }}

0 comments on commit fd3b1aa

Please sign in to comment.