Fix workflow bad job name
This commit is contained in:
6
.github/workflows/workflow.yml
vendored
6
.github/workflows/workflow.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
|
|
||||||
analyze:
|
analyze:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: ["test@master","test@latest"]
|
needs: ["test-master","test-latest"]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
# Tests cases below are auto generated through `npm run build`
|
# Tests cases below are auto generated through `npm run build`
|
||||||
# Edit utils/workflow.yml instead if you need to update workflow
|
# Edit utils/workflow.yml instead if you need to update workflow
|
||||||
|
|
||||||
test@master:
|
test-master:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
@@ -282,7 +282,7 @@ jobs:
|
|||||||
plugin_projects_limit: 2
|
plugin_projects_limit: 2
|
||||||
|
|
||||||
|
|
||||||
test@latest:
|
test-latest:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ jobs:
|
|||||||
|
|
||||||
analyze:
|
analyze:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: <%- JSON.stringify(releases.map(release => `test@${release}`)) %>
|
needs: <%- JSON.stringify(releases.map(release => `test-${release}`)) %>
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
# Tests cases below are auto generated through `npm run build`
|
# Tests cases below are auto generated through `npm run build`
|
||||||
# Edit utils/workflow.yml instead if you need to update workflow
|
# Edit utils/workflow.yml instead if you need to update workflow
|
||||||
<% for (const release of releases) { %>
|
<% for (const release of releases) { %>
|
||||||
test@<%- release %>:
|
test-<%- release %>:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
|||||||
Reference in New Issue
Block a user