-
Notifications
You must be signed in to change notification settings - Fork 50
42 lines (39 loc) · 1.03 KB
/
npm-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: npm-publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
working-directory: client/node
- run: npm run test
working-directory: client/node
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: cd client/node
- run: npm ci
working-directory: client/node
- run: npm run build
working-directory: client/node
- run: npm run prepackage
working-directory: client/node
- run: npm version 1.0.0-$(date +%Y%m%d%H%M%S)
working-directory: client/node
- run: npm publish --access public
working-directory: client/node
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}