File tree 1 file changed +23
-4
lines changed 1 file changed +23
-4
lines changed Original file line number Diff line number Diff line change 7
7
branches : ['*']
8
8
9
9
jobs :
10
+ esbuild-rollup :
11
+ name : esbuild CI (Rollup Tests)
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - name : Set up Go 1.x
16
+ uses : actions/setup-go@v2
17
+ with :
18
+ go-version : 1.19
19
+ id : go
20
+
21
+ - name : Setup Node.js environment
22
+
23
+ with :
24
+ node-version : 16
25
+
26
+ - name : Check out code into the Go module directory
27
+ uses : actions/checkout@v2
28
+
29
+ - name : Rollup Tests
30
+ # Split these out into their own runner because they're very slow
31
+ run : make test-rollup
32
+
10
33
esbuild :
11
34
name : esbuild CI
12
35
runs-on : ${{ matrix.os }}
@@ -123,10 +146,6 @@ jobs:
123
146
if : matrix.os == 'ubuntu-latest'
124
147
run : CI=1 make uglify
125
148
126
- - name : Rollup Tests
127
- if : matrix.os == 'ubuntu-latest'
128
- run : make test-rollup
129
-
130
149
- name : Check the unicode table generator
131
150
if : matrix.os == 'ubuntu-latest'
132
151
run : cd scripts && node gen-unicode-table.js
You can’t perform that action at this time.
0 commit comments