Skip to content

Commit

Permalink
Rename server-token to turbo_server_token
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd committed Apr 12, 2022
1 parent d56306a commit fe13acd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
eslint:
uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master
secrets:
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
turbo_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:
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
turbo_server_token: ${{ secrets.TURBO_SERVER_TOKEN }}

# Run end-to-end tests along with the microservices in docker-compose on Linux
e2e:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
eslint:
uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master
secrets:
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
turbo_server_token: ${{ secrets.TURBO_SERVER_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/eslint-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ESLint Workflow
on:
workflow_call:
secrets:
server-token:
turbo_server_token:
description: 'The Turborepo local server token'
required: true

Expand All @@ -23,7 +23,7 @@ jobs:
uses: felixmosh/turborepo-gh-artifacts@v1
with:
repo-token: ${{ github.token }}
server-token: ${{ secrets.server-token }}
server-token: ${{ secrets.turbo_server_token }}

- name: Install dependencies and run eslint
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobile-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
eslint:
uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master
secrets:
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
turbo_server_token: ${{ secrets.TURBO_SERVER_TOKEN }}

publish:
needs: [prettier, eslint]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Unit Tests Workflow
on:
workflow_call:
secrets:
server-token:
turbo_server_token:
description: 'The Turborepo local server token'
required: true

Expand All @@ -27,7 +27,7 @@ jobs:
uses: felixmosh/turborepo-gh-artifacts@v1
with:
repo-token: ${{ github.token }}
server-token: ${{ secrets.server-token }}
server-token: ${{ secrets.turbo_server_token }}

- name: Install dependencies and run tests with default env
run: |
Expand Down

0 comments on commit fe13acd

Please sign in to comment.