File tree 1 file changed +2
-12
lines changed
1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,11 @@ jobs:
11
11
os : [macos-latest, ubuntu-latest, windows-latest]
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v2
15
-
14
+ uses : actions/checkout@v4
16
15
- name : Install
17
16
run : npm ci --ignore-scripts
18
-
19
17
- name : Lint
20
18
run : npm run lint
21
-
22
19
- name : Build
23
20
run : npm run build
24
21
@@ -27,34 +24,27 @@ jobs:
27
24
runs-on : ubuntu-latest
28
25
steps :
29
26
- name : Checkout
30
- uses : actions/checkout@v2
31
-
27
+ uses : actions/checkout@v4
32
28
- name : Install
33
29
run : npm ci --ignore-scripts
34
-
35
30
- name : Build
36
31
run : npm run build
37
-
38
32
- name : Setup BrowserStack environment
39
33
uses : browserstack/github-actions/setup-env@master
40
34
with :
41
35
username : ${{ secrets.BROWSERSTACK_USERNAME }}
42
36
access-key : ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
43
-
44
37
- name : Start BrowserStack tunnel
45
38
uses : browserstack/github-actions/setup-local@master
46
39
with :
47
40
local-testing : start
48
41
local-identifier : random
49
-
50
42
- name : Run tests on BrowserStack
51
43
run : npm run test-remote
52
-
53
44
- name : Stop BrowserStack tunnel
54
45
uses : browserstack/github-actions/setup-local@master
55
46
with :
56
47
local-testing : stop
57
-
58
48
- name : Report code coverage
59
49
uses : codacy/codacy-coverage-reporter-action@v1
60
50
with :
You can’t perform that action at this time.
0 commit comments