File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ concurrency:
15
15
jobs :
16
16
build-and-test :
17
17
runs-on : ${{ matrix.os }}
18
-
18
+ env :
19
+ TURBO_TOKEN : ${{ secrets.TURBO_TOKEN }}
20
+ TURBO_TEAM : ${{ vars.TURBO_TEAM }}
19
21
strategy :
20
22
matrix :
21
23
os : [ubuntu-latest]
@@ -34,23 +36,14 @@ jobs:
34
36
- name : Install Dependencies 👨🏻💻
35
37
uses : ./.github/actions/install-dependencies
36
38
37
- - name : Setup Turbo cache 🏎️
38
- id : turbo-cache
39
- uses : actions/cache@v4
40
- with :
41
- path : .turbo
42
- key : turbo-${{ runner.os }}-${{ github.sha }}
43
- restore-keys : |
44
- turbo-${{ runner.os }}-
45
-
46
39
- name : Run linter 🧹
47
- run : pnpm run lint --cache-dir=.turbo
40
+ run : pnpm run lint
48
41
49
42
- name : Build Library 👷
50
- run : pnpm run build --cache-dir=.turbo
43
+ run : pnpm run build
51
44
52
45
- name : Run tests 🧪
53
46
uses : cypress-io/github-action@v6
54
47
with :
55
48
install-command : pnpm cypress install
56
- command : pnpm run test --cache-dir=.turbo
49
+ command : pnpm run test
You can’t perform that action at this time.
0 commit comments