Skip to content

Commit 046bb92

Browse files
committed
try again
1 parent 5a6e591 commit 046bb92

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/npm-publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ on:
99
- threejs-javascript
1010

1111
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-node@v1
17+
with:
18+
node-version: 14
19+
- run: npm ci
20+
- run: npm test
21+
1222
publish-npm:
1323
needs: build
1424
runs-on: ubuntu-latest
@@ -18,6 +28,8 @@ jobs:
1828
with:
1929
node-version: 14
2030
registry-url: https://registry.npmjs.org/
31+
- run: npm ci
2132
- run: npm publish
2233
env:
2334
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
35+

0 commit comments

Comments
 (0)