From 86b7407db21665e68267b4bfd689bdca760da3fa Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 24 Apr 2023 12:35:26 +0200 Subject: [PATCH] workflows: teak CI job names Signed-off-by: Patrik Oldsberg --- .github/workflows/ci-noop.yml | 13 ++++++++++++- .github/workflows/ci.yml | 4 +++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-noop.yml b/.github/workflows/ci-noop.yml index 9187adc85d..d636a06eb8 100644 --- a/.github/workflows/ci-noop.yml +++ b/.github/workflows/ci-noop.yml @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50e429b82f..86ac320ac7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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