From d3268ce72c1a7778ee6bdfa1cf09650a59530330 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:19:12 -0700 Subject: [PATCH] make `node-version` input a string --- .github/workflows/run-test-template.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-test-template.yml b/.github/workflows/run-test-template.yml index 9135195a553..037e26c0171 100644 --- a/.github/workflows/run-test-template.yml +++ b/.github/workflows/run-test-template.yml @@ -8,7 +8,7 @@ on: type: string node-version: required: true - type: number + type: string jobs: test: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f7719c27b3..cb3507964f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: strategy: matrix: project: [misc, abilities, items, moves, battle] - uses: /.github/workflows/run-test-template.yml + uses: ./.github/workflows/run-test-template.yml with: project: ${{ matrix.project }} node-version: ${{ env.NODE_VERSION }} \ No newline at end of file