浏览代码

ci: add turbo remote caching configuration

Co-Authored-By: Jayant Krishnamurthy <jayant@dourolabs.xyz>
Devin AI 9 月之前
父节点
当前提交
cf355f93f0
共有 2 个文件被更改,包括 10 次插入0 次删除
  1. 5 0
      .github/workflows/ci-turbo-build.yml
  2. 5 0
      .github/workflows/ci-turbo-test.yml

+ 5 - 0
.github/workflows/ci-turbo-build.yml

@@ -23,5 +23,10 @@ jobs:
         name: Install pnpm
         with:
           run_install: true
+      - name: Enable Turbo Remote Caching
+        uses: actions/setup-node@v4
+        with:
+          token: ${{ secrets.TURBO_TOKEN }}
+          team: pythnetwork
       - name: Build
         run: pnpm build:ci

+ 5 - 0
.github/workflows/ci-turbo-test.yml

@@ -36,5 +36,10 @@ jobs:
         name: Install pnpm
         with:
           run_install: true
+      - name: Enable Turbo Remote Caching
+        uses: actions/setup-node@v4
+        with:
+          token: ${{ secrets.TURBO_TOKEN }}
+          team: pythnetwork
       - name: Test
         run: pnpm test:ci