ci: Fix the name of the no-op `check-required` job in the `Test Web` workflow

This commit is contained in:
TÖRÖK Attila 2024-04-02 18:08:09 +02:00
parent 501b42c63f
commit 6de12dd59c
1 changed files with 1 additions and 2 deletions

View File

@ -98,12 +98,11 @@ jobs:
check-required:
needs: changes
if: needs.changes.outputs.should_run == 'false'
name: Test Node.js ${{ matrix.node_version }} / Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
name: Test Node.js ${{ matrix.node_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ["20", "21"]
rust_version: [stable] # We most likely don't care about Rust versions here, we'll catch those issues in test_rust.yml.
os: [ubuntu-22.04, windows-latest]
steps: