Properly name and separate each steps at publication. (#199)
[poolifier.git] / .github / workflows / npmpublish.yml
1 name: Node.js Package
2
3 on:
4 release:
5 types: [created]
6
7 jobs:
8 build:
9 runs-on: ubuntu-latest
10
11 steps:
12 - name: Checkout
13 uses: actions/checkout@v2
14
15 - name: Setup Node
16 uses: actions/setup-node@v2
17 with:
18 node-version: 12
19
20 - name: Install
21 run: npm ci
22
23 - name: Production Build
24 run: npm run build:prod
25
26 - name: Lint
27 run: npm run lint
28
29 - name: Production Tests & Coverage
30 run: |
31 npm run test:prod
32 npm run coverage
33 env:
34 CI: true
35
36 publish-npm:
37 needs: build
38 runs-on: ubuntu-latest
39
40 steps:
41 - name: Checkout
42 uses: actions/checkout@v2
43
44 - name: Setup Node
45 uses: actions/setup-node@v2
46 with:
47 node-version: 12
48 registry-url: https://registry.npmjs.org/
49
50 - name: Install
51 run: npm ci
52
53 - name: Publish
54 run: npm publish
55 env:
56 NODE_AUTH_TOKEN: ${{secrets.npm_token}}