File tree 9 files changed +4773
-5771
lines changed
9 files changed +4773
-5771
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : Release New Version
1
+ name : Release
2
2
3
3
on :
4
4
workflow_dispatch :
@@ -12,17 +12,19 @@ jobs:
12
12
publish-release :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - name : Checkout
16
+ uses : actions/checkout@v3
16
17
with :
17
18
ref : ${{ github.ref }}
18
19
fetch-depth : 0
19
20
20
- - name : Setup Node version
21
+ - name : Setup Node
21
22
uses : actions/setup-node@v3
22
23
with :
23
- node-version : 14
24
+ node-version-file : ' .nvmrc'
25
+ cache : ' npm'
24
26
25
- - name : Install dependencies
27
+ - name : Install Dependencies
26
28
run : npm ci
27
29
28
30
- name : Setup Git
Original file line number Diff line number Diff line change 1
- name : Integration Tests
1
+ name : Tests
2
2
3
3
on :
4
4
pull_request :
5
5
branches :
6
6
- main
7
7
8
8
jobs :
9
- node-14 :
9
+ lint :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
13
- with :
14
- ref : ${{ github.ref }}
15
- fetch-depth : 0
12
+ - name : Checkout
13
+ uses : actions/checkout@v3
16
14
17
- - uses : actions/setup-node@v3
15
+ - name : Setup Node
16
+ uses : actions/setup-node@v3
18
17
with :
19
- node-version : 14
18
+ node-version-file : ' .nvmrc'
19
+ cache : ' npm'
20
20
21
- - name : Install dependencies
21
+ - name : Install Dependencies
22
22
run : npm ci
23
23
24
- - run : npm test
25
- env :
26
- SAUCE_USERNAME : ${{secrets.SAUCE_USERNAME}}
27
- SAUCE_ACCESS_KEY : ${{secrets.SAUCE_ACCESS_KEY}}
24
+ - name : Lint
25
+ run : npm run lint
28
26
29
- node-16 :
27
+ integration :
30
28
runs-on : ubuntu-latest
31
29
steps :
32
- - uses : actions/checkout@v3
33
- with :
34
- ref : ${{ github.ref }}
35
- fetch-depth : 0
30
+ - name : Checkout
31
+ uses : actions/checkout@v3
36
32
37
- - uses : actions/setup-node@v3
33
+ - name : Setup Node
34
+ uses : actions/setup-node@v3
38
35
with :
39
- node-version : 16
36
+ node-version-file : ' .nvmrc'
37
+ cache : ' npm'
40
38
41
- - name : Install dependencies
39
+ - name : Install Dependencies
42
40
run : npm ci
43
41
44
- - run : npm test
42
+ - name : Test
43
+ run : npm test
45
44
env :
46
45
SAUCE_USERNAME : ${{secrets.SAUCE_USERNAME}}
47
46
SAUCE_ACCESS_KEY : ${{secrets.SAUCE_ACCESS_KEY}}
Original file line number Diff line number Diff line change 1
- lts/fermium
1
+ v20
You can’t perform that action at this time.
0 commit comments