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