Skip to content

Commit 8f6565b

Browse files
committed
ci: fix build
1 parent 0f1ea18 commit 8f6565b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
node-version: [14.x, 15.x]
12+
node-version: ['14', '15']
1313

1414
runs-on: ubuntu-latest
1515
steps:

.github/workflows/npm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Build Node.js 15.x
13-
uses: actions/setup-node@v1
12+
- uses: actions/setup-node@v1
1413
with:
15-
node-version: '15.x'
14+
node-version: '15'
1615
registry-url: 'https://registry.npmjs.org'
1716
- run: npm install
17+
- run: npm build
1818
- run: npm publish
1919
env:
2020
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)