Skip to content

Commit 089b75c

Browse files
committed
ci: fix some job labels
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent e3d1685 commit 089b75c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ updates:
77
schedule:
88
interval: 'weekly'
99
day: 'saturday'
10-
1110
- package-ecosystem: "github-actions"
1211
directory: "/"
1312
schedule:

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cache-dependency-path: "**/package-lock.json"
3737
- name: setup project
3838
run: npm ci --ignore-scripts
39-
- name: build for ${{ matrix.target }}
39+
- name: build ${{ matrix.target }}
4040
run: npm run build:${{ matrix.target }}
4141
- name: artifact build result
4242
# see https://github.com/actions/upload-artifact
@@ -87,7 +87,7 @@ jobs:
8787
- name: Checkout
8888
# see https://github.com/actions/checkout
8989
uses: actions/checkout@v3
90-
- name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
90+
- name: Setup Node.js ${{ matrix.node-version }}
9191
# see https://github.com/actions/setup-node
9292
uses: actions/setup-node@v3
9393
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
publish-NPMJS:
6060
needs:
6161
- "bump"
62-
name: NPMJS - publish
62+
name: publish NPMJS
6363
runs-on: ubuntu-latest
6464
timeout-minutes: 30
6565
steps:
@@ -86,7 +86,7 @@ jobs:
8686
needs:
8787
- "bump"
8888
- "publish-NPMJS"
89-
name: GitHub - release
89+
name: publish GitHub
9090
runs-on: ubuntu-latest
9191
timeout-minutes: 30
9292
env:

0 commit comments

Comments
 (0)