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:
1515jobs :
1616 build-and-test :
1717 runs-on : ${{ matrix.os }}
18-
18+ env :
19+ TURBO_TOKEN : ${{ secrets.TURBO_TOKEN }}
20+ TURBO_TEAM : ${{ vars.TURBO_TEAM }}
1921 strategy :
2022 matrix :
2123 os : [ubuntu-latest]
@@ -34,23 +36,14 @@ jobs:
3436 - name : Install Dependencies 👨🏻💻
3537 uses : ./.github/actions/install-dependencies
3638
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-
4639 - name : Run linter 🧹
47- run : pnpm run lint --cache-dir=.turbo
40+ run : pnpm run lint
4841
4942 - name : Build Library 👷
50- run : pnpm run build --cache-dir=.turbo
43+ run : pnpm run build
5144
5245 - name : Run tests 🧪
5346 uses : cypress-io/github-action@v6
5447 with :
5548 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