From e542443cfac067650cd454b4930f083030bb3278 Mon Sep 17 00:00:00 2001 From: Sergey Dolin Date: Thu, 24 Nov 2022 13:30:14 +0100 Subject: [PATCH] Fix versions.yml --- .github/workflows/versions.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index 481ca1e4..6dd6f646 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -58,18 +58,18 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: ['20-v8-canary', '20.0-v8-canary', '20.0.0-v8-canary','20.0.0-v8-canary20221103f7e2421e91'] - steps: - - uses: actions/checkout@v3 - - name: Setup Node - uses: ./ - with: - node-version: ${{ matrix.node-version }} - - name: Verify node and npm - run: | - canaryVersion="${{ matrix.node-version }}" - majorVersion=$(echo $canaryVersion | cut -d- -f1) - __tests__/verify-node.sh "$majorVersion" - shell: bash + steps: + - uses: actions/checkout@v3 + - name: Setup Node + uses: ./ + with: + node-version: ${{ matrix.node-version }} + - name: Verify node and npm + run: | + canaryVersion="${{ matrix.node-version }}" + majorVersion=$(echo $canaryVersion | cut -d- -f1) + __tests__/verify-node.sh "$majorVersion" + shell: bash nightly-syntax: runs-on: ${{ matrix.os }}