File tree Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Original file line number Diff line number Diff line change 11
11
- release-*
12
12
13
13
jobs :
14
- build :
14
+ test :
15
15
runs-on : ubuntu-latest
16
16
17
17
strategy :
@@ -24,27 +24,46 @@ jobs:
24
24
25
25
steps :
26
26
- uses : actions/checkout@v3
27
- with :
28
- fetch-depth : 5
29
27
- name : Use node version ${{ matrix.node-version }}
30
28
uses : actions/setup-node@v3
31
29
with :
32
30
node-version : ${{ matrix.node-version }}
33
31
check-latest : true
34
32
- run : npm ci
35
33
36
- # Re: https://github.com/actions/setup-node/pull/125
37
- - name : Register Problem Matcher for TSC
38
- run : echo "##[add-matcher].github/tsc.json"
39
-
40
34
- name : Tests
41
35
run : npm test -- --no-lint
42
36
37
+ lint :
38
+ runs-on : ubuntu-latest
39
+
40
+ steps :
41
+ - uses : actions/checkout@v3
42
+ - uses : actions/setup-node@v3
43
+ with :
44
+ node-version : " *"
45
+ check-latest : true
46
+ - run : npm ci
47
+
43
48
- name : Linter
44
49
run : npm run lint:ci
45
50
51
+ browser-integration :
52
+ runs-on : ubuntu-latest
53
+
54
+ steps :
55
+ - uses : actions/checkout@v3
56
+ - uses : actions/setup-node@v3
57
+ with :
58
+ node-version : " *"
59
+ check-latest : true
60
+ - run : npm ci
61
+
46
62
- name : Adding playwright
47
63
run : npm install --no-save --no-package-lock playwright
48
64
65
+ - name : Build local
66
+ run : gulp local
67
+
49
68
- name : Validate the browser can import TypeScript
50
69
run : gulp test-browser-integration
You can’t perform that action at this time.
0 commit comments