2020-05-19 09:25:54 -04:00
|
|
|
name: versions
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2022-04-01 04:13:52 -04:00
|
|
|
- '**.md'
|
|
|
|
push:
|
2020-05-19 09:25:54 -04:00
|
|
|
branches:
|
2021-06-25 05:06:49 -04:00
|
|
|
- main
|
2020-05-19 09:25:54 -04:00
|
|
|
- releases/*
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2022-04-01 04:13:52 -04:00
|
|
|
|
2020-05-19 09:25:54 -04:00
|
|
|
jobs:
|
2020-06-29 14:56:37 -04:00
|
|
|
local-cache:
|
2021-01-20 14:15:22 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-19 09:25:54 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-01-20 14:15:22 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-06-29 14:56:37 -04:00
|
|
|
node-version: [10, 12, 14]
|
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-29 14:56:37 -04:00
|
|
|
- name: Setup Node
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Verify node and npm
|
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
2020-05-19 09:25:54 -04:00
|
|
|
shell: bash
|
2020-06-29 14:56:37 -04:00
|
|
|
|
2021-06-25 05:56:15 -04:00
|
|
|
lts-syntax:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
node-version: [lts/dubnium, lts/erbium, lts/fermium, lts/*]
|
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-25 05:56:15 -04:00
|
|
|
- name: Setup Node
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
2020-06-29 14:56:37 -04:00
|
|
|
manifest:
|
2021-01-20 14:15:22 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-29 14:56:37 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-01-20 14:15:22 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-06-30 08:07:45 -04:00
|
|
|
node-version: [10.15, 12.16.0, 14.2.0, 16.3.0]
|
2020-05-19 09:25:54 -04:00
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-29 14:56:37 -04:00
|
|
|
- name: Setup Node
|
2020-05-19 09:25:54 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-06-29 14:56:37 -04:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-05-19 09:25:54 -04:00
|
|
|
- name: Verify node and npm
|
2020-06-29 14:56:37 -04:00
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
check-latest:
|
2021-01-20 14:15:22 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-29 14:56:37 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-01-20 14:15:22 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-06-30 08:07:45 -04:00
|
|
|
node-version: [10, 12, 14]
|
2020-06-29 14:56:37 -04:00
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-29 14:56:37 -04:00
|
|
|
- name: Setup Node and check latest
|
|
|
|
uses: ./
|
2020-05-19 09:25:54 -04:00
|
|
|
with:
|
2020-06-29 14:56:37 -04:00
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Verify node and npm
|
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
2020-05-19 09:25:54 -04:00
|
|
|
shell: bash
|
2020-06-29 14:56:37 -04:00
|
|
|
|
2021-11-29 04:18:31 -05:00
|
|
|
version-file:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-29 04:18:31 -05:00
|
|
|
- name: Setup node from node version file
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
node-version-file: '__tests__/data/.nvmrc'
|
|
|
|
- name: Verify node
|
|
|
|
run: __tests__/verify-node.sh 14
|
|
|
|
|
2020-06-29 14:56:37 -04:00
|
|
|
node-dist:
|
2021-01-20 14:15:22 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-29 14:56:37 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-01-20 14:15:22 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-06-29 14:56:37 -04:00
|
|
|
node-version: [11, 13]
|
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-29 14:56:37 -04:00
|
|
|
- name: Setup Node from dist
|
2020-05-19 09:25:54 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-06-29 14:56:37 -04:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-05-19 09:25:54 -04:00
|
|
|
- name: Verify node and npm
|
2020-06-29 14:56:37 -04:00
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
old-versions:
|
2021-01-20 14:15:22 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-29 14:56:37 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-01-20 14:15:22 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-06-29 14:56:37 -04:00
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-29 14:56:37 -04:00
|
|
|
# test old versions which didn't have npm and layout different
|
|
|
|
- name: Setup node 0.12.18 from dist
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
node-version: 0.12.18
|
|
|
|
- name: Verify node
|
|
|
|
run: __tests__/verify-node.sh 0.12.18 SKIP_NPM
|
2020-12-09 14:28:47 -05:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
arch:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2022-04-01 04:13:52 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-30 08:07:45 -04:00
|
|
|
- name: Setup node 14 x86 from dist
|
2020-12-09 14:28:47 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-06-30 08:07:45 -04:00
|
|
|
node-version: '14'
|
2020-12-09 14:28:47 -05:00
|
|
|
architecture: 'x86'
|
|
|
|
- name: Verify node
|
|
|
|
run: __tests__/verify-arch.sh "ia32"
|
2021-06-16 02:52:44 -04:00
|
|
|
shell: bash
|