Skip to content

Commit b2b5a60

Browse files
committed
ci: move uglify into slow tests
1 parent b9cae14 commit b2b5a60

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88

99
jobs:
1010
esbuild-rollup:
11-
name: esbuild CI (Rollup Tests)
11+
# Split these out into their own runner because they're very slow
12+
name: esbuild CI (Slow Tests)
1213
runs-on: ubuntu-latest
1314

1415
steps:
@@ -27,9 +28,11 @@ jobs:
2728
uses: actions/checkout@v2
2829

2930
- name: Rollup Tests
30-
# Split these out into their own runner because they're very slow
3131
run: make test-rollup
3232

33+
- name: Uglify Tests
34+
run: CI=1 make uglify
35+
3336
esbuild:
3437
name: esbuild CI
3538
runs-on: ${{ matrix.os }}
@@ -142,10 +145,6 @@ jobs:
142145
if: matrix.os == 'ubuntu-latest'
143146
run: make test-preact-splitting
144147

145-
- name: Uglify Tests
146-
if: matrix.os == 'ubuntu-latest'
147-
run: CI=1 make uglify
148-
149148
- name: Check the unicode table generator
150149
if: matrix.os == 'ubuntu-latest'
151150
run: cd scripts && node gen-unicode-table.js

0 commit comments

Comments
 (0)