mirror of
https://github.com/actions/setup-node.git
synced 2025-04-22 09:21:00 +00:00
Fix versions.yml
This commit is contained in:
parent
4a961ae737
commit
e542443cfa
1 changed files with 12 additions and 12 deletions
24
.github/workflows/versions.yml
vendored
24
.github/workflows/versions.yml
vendored
|
@ -58,18 +58,18 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
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']
|
node-version: ['20-v8-canary', '20.0-v8-canary', '20.0.0-v8-canary','20.0.0-v8-canary20221103f7e2421e91']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: Verify node and npm
|
- name: Verify node and npm
|
||||||
run: |
|
run: |
|
||||||
canaryVersion="${{ matrix.node-version }}"
|
canaryVersion="${{ matrix.node-version }}"
|
||||||
majorVersion=$(echo $canaryVersion | cut -d- -f1)
|
majorVersion=$(echo $canaryVersion | cut -d- -f1)
|
||||||
__tests__/verify-node.sh "$majorVersion"
|
__tests__/verify-node.sh "$majorVersion"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
nightly-syntax:
|
nightly-syntax:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue