Skip to content

Commit

Permalink
Rename some jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Nov 24, 2023
1 parent 01219a7 commit ddb16b8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
RUST_BACKTRACE: full

jobs:
install:
yarn-install:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
exit 1
fi
build:
yarn-build:
runs-on: ubuntu-latest
needs: [install]
needs: [yarn-install]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

lint-prettier:
runs-on: ubuntu-latest
needs: [install]
needs: [yarn-install]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -105,9 +105,9 @@ jobs:
exit 1
fi
unit-test:
yarn-test:
runs-on: ubuntu-latest
needs: [build]
needs: [yarn-build]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:

cli-e2e:
runs-on: ubuntu-latest
needs: [build, agent-build]
needs: [yarn-build, agent-build]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:

env-test:
runs-on: ubuntu-latest
needs: [build]
needs: [yarn-build]
strategy:
matrix:
environment: [testnet4, mainnet3]
Expand All @@ -277,7 +277,7 @@ jobs:

coverage:
runs-on: ubuntu-latest
needs: [build]
needs: [yarn-build]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit ddb16b8

Please sign in to comment.