-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (56 loc) · 1.54 KB
/
main.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
push:
branches: ['**', '!gh-pages']
pull_request:
branches: ['**', '!gh-pages']
create:
tags: 'v[0-9]*'
jobs:
test:
name: Test on ${{ matrix.os }}
strategy:
matrix: { os: [ubuntu-latest] }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: ${{ runner.os }}-
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: |
npm install
xvfb-run --auto-servernum npm test
npm run lint
deploy:
name: Deploy on ${{ matrix.os }}
needs: test
if: |
github.event_name == 'create' &&
startsWith(github.ref, 'refs/tags/')
strategy:
matrix: { os: [ubuntu-latest] }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('package.json', 'package-lock.json') }}
restore-keys: ${{ runner.os }}-
- uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- run: |
npm install
npm run dist
sed -i 's/"private":\ true/"private":\ false/' package.json
sed -i -E 's/^dist\/?.*$//' .gitignore
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}