Skip to content

Commit

Permalink
split tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Sep 4, 2023
1 parent 7002287 commit 43eedb6
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,19 @@ on:
branches: [ "main" ]

jobs:
build:
code-quality:
runs-on: ubuntu-latest
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run check

test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
Expand All @@ -26,6 +38,4 @@ jobs:
- run: npm ci
- run: npm run build
- run: npx playwright install
- run: npm test
- run: npm run lint
- run: npm run check
- run: npm test

0 comments on commit 43eedb6

Please sign in to comment.