diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c2519f89..26fd98fbe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,9 @@ on: - main pull_request: types: [opened, synchronize, reopened] - +env: + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index d551fea54..2290b449e 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -6,6 +6,12 @@ on: - main pull_request: types: [opened, synchronize, reopened] +env: + TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: quality: diff --git a/turbo.json b/turbo.json index 6b041de86..44450e0f2 100644 --- a/turbo.json +++ b/turbo.json @@ -4,14 +4,14 @@ "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "build/**"] }, "build:watch": { "outputs": ["dist/**"] }, "npm:publish": { "dependsOn": ["^build"] }, - "lint": { "cache": false }, - "lint:attw": { "dependsOn": ["^build"], "cache": false }, - "lint:pub": { "cache": false }, - "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"], "cache": false }, + "lint": {}, + "lint:attw": { "dependsOn": ["^build"] }, + "lint:pub": {}, + "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:tsd": {}, - "test:watch": { "cache": false }, + "test:watch": {}, "prepack": { "dependsOn": ["^prepack"], "cache": false }, - "dev": { "dependsOn": ["^prepack"], "cache": false }, + "dev": { "dependsOn": ["^prepack"] }, "type:check": { "dependsOn": ["^build"] } }, "globalEnv": ["NODE_ENV"]