Skip to content

Commit

Permalink
fix: Tune publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Aug 26, 2022
1 parent 67c451b commit 262262b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- run: npm install --no-package-lock
name: Install dev dependencies
- run: npm test
name: Run NPM Test
- run: npm run build
name: Run build
- run: npm run test
name: Run test
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 262262b

Please sign in to comment.