File tree 1 file changed +23
-1
lines changed
1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 21
21
- " *"
22
22
- lts/*
23
23
- lts/-1
24
+ bundle :
25
+ - " true"
26
+ include :
27
+ - node-version : " *"
28
+ bundle : " false"
29
+
30
+ name : Test Node ${{ matrix.node-version }} with --bundle=${{ matrix.bundle }}
24
31
25
32
steps :
26
33
- uses : actions/checkout@v3
32
39
- run : npm ci
33
40
34
41
- name : Tests
35
- run : npm test
42
+ run : npm run test -- --bundle=${{ matrix.bundle }}
36
43
37
44
lint :
38
45
runs-on : ubuntu-latest
68
75
- name : Validate the browser can import TypeScript
69
76
run : gulp test-browser-integration
70
77
78
+ typecheck :
79
+ runs-on : ubuntu-latest
80
+
81
+ steps :
82
+ - uses : actions/checkout@v3
83
+ - uses : actions/setup-node@v3
84
+ with :
85
+ node-version : " *"
86
+ check-latest : true
87
+ - run : npm ci
88
+
89
+ - name : Build src
90
+ run : npx hereby build-src
91
+
92
+
71
93
misc :
72
94
runs-on : ubuntu-latest
73
95
You can’t perform that action at this time.
0 commit comments