Skip to content

Commit

Permalink
ci: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Mar 16, 2021
1 parent 0f1ea18 commit 8f6565b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
strategy:
matrix:
node-version: [14.x, 15.x]
node-version: ['14', '15']

runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Node.js 15.x
uses: actions/setup-node@v1
- uses: actions/setup-node@v1
with:
node-version: '15.x'
node-version: '15'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 8f6565b

Please sign in to comment.