Skip to content

Commit

Permalink
Fix publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisn committed Jun 7, 2023
1 parent eb8fca5 commit 90b6d08
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,20 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
include:
- node-version: 16.x
browser: "ChromeHeadlessWithoutAutoplayPolicy"

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm ci
- run: npm test
- run: npm run test -- --browsers=${{ matrix.browser }}

publish-npm:
needs: build
Expand Down

0 comments on commit 90b6d08

Please sign in to comment.