Skip to content

Commit

Permalink
Fix publish command
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee committed Oct 18, 2020
1 parent 9416015 commit 3e2088b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ on:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm run compile
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3e2088b

Please sign in to comment.