diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 9852fc31f7..ac8ee851cb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,13 +19,13 @@ jobs: eslint: uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master secrets: - turborepo-token: ${{ secrets.TURBO_SERVER_TOKEN }} + server-token: ${{ secrets.TURBO_SERVER_TOKEN }} # Run unit tests on all platforms/versions of node unit: uses: Seneca-CDOT/telescope/.github/workflows/unit-tests-ci.yml@master secrets: - turborepo-token: ${{ secrets.TURBO_SERVER_TOKEN }} + server-token: ${{ secrets.TURBO_SERVER_TOKEN }} # Run end-to-end tests along with the microservices in docker-compose on Linux e2e: diff --git a/.github/workflows/eslint-ci.yml b/.github/workflows/eslint-ci.yml index 278f416b21..f2273d2383 100644 --- a/.github/workflows/eslint-ci.yml +++ b/.github/workflows/eslint-ci.yml @@ -3,7 +3,7 @@ name: ESLint Workflow on: workflow_call: secrets: - turborepo-token: + server-token: description: 'The Turborepo local server token' required: true @@ -23,7 +23,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v1 with: repo-token: ${{ github.token }} - server-token: ${{ secrets.turborepo-token }} + server-token: ${{ secrets.server-token }} - name: Install dependencies and run eslint run: | diff --git a/.github/workflows/unit-tests-ci.yml b/.github/workflows/unit-tests-ci.yml index 08cc25447b..9436c8e207 100644 --- a/.github/workflows/unit-tests-ci.yml +++ b/.github/workflows/unit-tests-ci.yml @@ -3,7 +3,7 @@ name: Unit Tests Workflow on: workflow_call: secrets: - turborepo-token: + server-token: description: 'The Turborepo local server token' required: true @@ -27,7 +27,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v1 with: repo-token: ${{ github.token }} - server-token: ${{ secrets.turborepo-token }} + server-token: ${{ secrets.server-token }} - name: Install dependencies and run tests with default env run: |