1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| name: npm publish
| on:
| release:
| types: [created]
| jobs:
| build:
| runs-on: ubuntu-latest
| steps:
| - name: Checkout
| uses: actions/checkout@v2
| - name: Setup Node
| uses: actions/setup-node@v2
| with:
| node-version: '16.x'
| registry-url: 'https://registry.npmjs.org'
| - name: Install dependencies and test 🔧
| run: npm ci && npm run test
| - name: Publish package on NPM 📦
| run: npm publish
| env:
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|