Skip to content

Commit

Permalink
fix: update job name
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Aug 19, 2023
1 parent 06a6178 commit d6c5c21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}

jobs:
main:
Integration_And_Deployment:
name: Nx Cloud - Main Job
runs-on: ubuntu-latest
steps:
Expand All @@ -37,7 +37,7 @@ jobs:
# Set node/npm/yarn versions using volta
- uses: volta-cli/action@v4
with:
package-json-path: '${{ github.workspace }}/package.json'
package-json-path: "${{ github.workspace }}/package.json"

- name: Use the package manager cache if available
uses: actions/cache@v3
Expand Down Expand Up @@ -96,7 +96,6 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
run: NX_CLOUD_DISTRIBUTED_EXECUTION=false npm run deploy:beta


agents:
name: Agent ${{ matrix.agent }}
runs-on: ubuntu-latest
Expand All @@ -110,7 +109,7 @@ jobs:
# Set node/npm/yarn versions using volta
- uses: volta-cli/action@v4
with:
package-json-path: '${{ github.workspace }}/package.json'
package-json-path: "${{ github.workspace }}/package.json"

- name: Use the package manager cache if available
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"bootstrap": "npm install",
"build": "lerna run build",
"start:dev": "lerna run start:dev --parallel",
"start:dev": "lerna run start:dev",
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"fix": "lerna run fix --stream",
Expand Down

0 comments on commit d6c5c21

Please sign in to comment.