workflows: teak CI job names

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-04-24 12:35:26 +02:00
parent d66b940ee1
commit 86b7407db2
2 changed files with 15 additions and 2 deletions
+12 -1
View File
@@ -10,7 +10,7 @@ on:
jobs:
# The verify jobs runs all the verification that doesn't require a
# diff towards master, since it takes some time to fetch that.
noop:
verify-noop:
runs-on: ubuntu-latest
strategy:
@@ -20,3 +20,14 @@ jobs:
name: Verify ${{ matrix.node-version }}
steps:
- run: echo NOOP
test-noop:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
name: Test ${{ matrix.node-version }}
steps:
- run: echo NOOP
+3 -1
View File
@@ -24,7 +24,7 @@ jobs:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
name: Verify ${{ matrix.node-version }}
name: Install ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
@@ -55,6 +55,7 @@ jobs:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
name: Verify ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
@@ -131,6 +132,7 @@ jobs:
matrix:
node-version: [16.x, 18.x]
name: Test ${{ matrix.node-version }}
services:
postgres13:
image: postgres:13