Commit e77f632 1 parent addf165 commit e77f632 Copy full SHA for e77f632
File tree 3 files changed +12
-22
lines changed
3 files changed +12
-22
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @fabrix-framework/chakra-ui " : patch
3
+ " @fabrix-framework/fabrix " : patch
4
+ " @fabrix-framework/graphql-config " : patch
5
+ ---
6
+
7
+ Use turbo cache on CI
Original file line number Diff line number Diff line change 1
1
name : Lint
2
+ description : Run linter and type-checker and test
2
3
3
- inputs :
4
- filter :
5
- description : ' The package to lint'
6
- required : true
7
-
8
- # Run linter and type-checker
9
4
runs :
10
5
using : composite
11
6
steps :
21
16
- name : Install dependencies
22
17
run : pnpm install
23
18
shell : bash
24
- - name : Lint
25
- run : npx turbo run lint test type-check --filter="./${{ inputs.filter }}"
19
+ - name : Launch Turbo Remote Cache Server
20
+ uses : dtinth/setup-github-actions-caching-for-turbo@v1.3.0
21
+ - name : Run lint / test / type-check
22
+ run : npx turbo run lint test type-check
26
23
shell : bash
Original file line number Diff line number Diff line change @@ -12,26 +12,12 @@ concurrency:
12
12
13
13
jobs :
14
14
ci :
15
- strategy :
16
- matrix :
17
- packages :
18
- - fabrix
19
- - graphql-config
20
- - chakra-ui
21
15
runs-on : ubuntu-latest
22
16
steps :
23
17
- uses : actions/checkout@v4
24
18
with :
25
19
fetch-depth : 2
26
- - uses : tj-actions/changed-files@v45
27
- id : changed-files
28
- with :
29
- files : |
30
- packages/${{ matrix.packages }}/**
31
20
- uses : ./.github/actions/ci
32
- if : steps.changed-files.outputs.any_changed == 'true'
33
- with :
34
- filter : " packages/${{ matrix.packages }}"
35
21
36
22
# A job to check if all examples can be built successfully to detect unwanted breaking changes
37
23
build-examples :
You can’t perform that action at this time.
0 commit comments