File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 29
29
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
30
30
31
31
jobs :
32
+ build :
33
+ runs-on : ubuntu-latest-16
34
+ steps :
35
+ - name : Check out the code
36
+ uses : actions/checkout@v4
37
+
38
+ - name : Setup & Install
39
+ uses : ./.github/composite-actions/install
40
+
41
+ - name : Build Packages
42
+ run : pnpm build:packages
43
+
32
44
lint :
33
45
timeout-minutes : 15
34
46
name : Lint Packages
Original file line number Diff line number Diff line change 31
31
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
32
32
33
33
jobs :
34
+ build :
35
+ runs-on : ubuntu-latest-16
36
+ name : Build Packages
37
+ steps :
38
+ - name : Check out the code
39
+ uses : actions/checkout@v4
40
+
41
+ - name : Setup & Install
42
+ uses : ./.github/composite-actions/install
43
+
44
+ - name : Build Packages
45
+ run : pnpm build:legacy_packages
46
+
34
47
lint :
35
48
timeout-minutes : 15
36
49
name : Lint Packages
Original file line number Diff line number Diff line change 15
15
"test:legacy" : " turbo run test --filter=./legacy_packages/*" ,
16
16
"e2e" : " turbo run e2e --filter=./packages/*" ,
17
17
"e2e:legacy" : " turbo run e2e --filter=./legacy_packages/*" ,
18
+ "build:packages" : " turbo run build --filter=./packages/*" ,
19
+ "build:legacy_packages" : " turbo run build --filter=./legacy_packages/*" ,
18
20
"build" : " turbo run build --filter=./packages/* --filter=./legacy_packages/*" ,
19
21
"bench" : " turbo run bench" ,
20
22
"typedoc" : " turbo run typedoc" ,
You can’t perform that action at this time.
0 commit comments