Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
straker committed Oct 20, 2023
1 parent f52848d commit 497e9ad
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,22 @@ jobs:
- run: npm run coverage --workspace=packages/playwright
- run: npm run test:esm --workspace=packages/playwright

wdio_globals_test:
strategy:
matrix:
node: [16, 18, 20]
runs-on: ubuntu-latest
timeout-minutes: 15
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run test --workspace=test/wdio

axe_core_test:
if: github.ref_name == 'master' || startsWith(github.ref_name, 'release')
runs-on: ubuntu-latest
Expand All @@ -174,4 +190,4 @@ jobs:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm test --workspace=test/axe-core
- run: npm test --workspace=test/axe-core

0 comments on commit 497e9ad

Please sign in to comment.