File tree 1 file changed +3
-36
lines changed
1 file changed +3
-36
lines changed Original file line number Diff line number Diff line change 4
4
- push
5
5
jobs :
6
6
main :
7
- name : ' ${{ matrix.node }} '
7
+ name : ${{matrix.node}}
8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
11
11
- uses : dcodeIO/setup-node-nvm@master
12
12
with :
13
- node-version : ${{ matrix.node }}
13
+ node-version : ${{matrix.node}}
14
14
- run : npm install
15
15
- run : npm test
16
16
- uses : codecov/codecov-action@v1
17
17
strategy :
18
18
matrix :
19
19
node :
20
- - lts/dubnium
20
+ - lts/erbium
21
21
- node
22
- release :
23
- if : startsWith(github.ref, 'refs/tags/')
24
- name : release
25
- runs-on : ubuntu-latest
26
- steps :
27
- - uses : actions/checkout@v2
28
- - uses : dcodeIO/setup-node-nvm@master
29
- with :
30
- node-version : node
31
- - run : npm install
32
- - run : npm run build
33
- - id : release
34
- uses : actions/create-release@v1
35
- env :
36
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
- with :
38
- tag_name : ${{ github.ref }}
39
- - uses : actions/upload-release-asset@v1
40
- env :
41
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
- with :
43
- upload_url : ${{ steps.release.outputs.upload_url }}
44
- asset_path : hast-util-sanitize.js
45
- asset_name : hast-util-sanitize.js
46
- asset_content_type : application/javascript
47
- - uses : actions/upload-release-asset@v1
48
- env :
49
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50
- with :
51
- upload_url : ${{ steps.release.outputs.upload_url }}
52
- asset_path : hast-util-sanitize.min.js
53
- asset_name : hast-util-sanitize.min.js
54
- asset_content_type : application/javascript
You can’t perform that action at this time.
0 commit comments