2020-05-19 14:25:54 +01:00
|
|
|
name: versions
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-22 13:12:24 +01:00
|
|
|
- main
|
2020-05-19 14:25:54 +01:00
|
|
|
- releases/*
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
|
|
|
|
jobs:
|
2020-06-29 19:56:37 +01:00
|
|
|
local-cache:
|
2020-05-19 14:25:54 +01:00
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-06-29 19:56:37 +01:00
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
node-version: [10, 12, 14]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- 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 14:25:54 +01:00
|
|
|
shell: bash
|
2020-06-29 19:56:37 +01:00
|
|
|
|
|
|
|
manifest:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
node-version: [10.15, 12.16.0, 14.2.0]
|
2020-05-19 14:25:54 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-06-29 19:56:37 +01:00
|
|
|
- name: Setup Node
|
2020-05-19 14:25:54 +01:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-06-29 19:56:37 +01:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-05-19 14:25:54 +01:00
|
|
|
- name: Verify node and npm
|
2020-06-29 19:56:37 +01:00
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
check-latest:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
node-version: [10, 11, 12, 14]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node and check latest
|
|
|
|
uses: ./
|
2020-05-19 14:25:54 +01:00
|
|
|
with:
|
2020-06-29 19:56:37 +01: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 14:25:54 +01:00
|
|
|
shell: bash
|
2020-06-29 19:56:37 +01:00
|
|
|
|
|
|
|
node-dist:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
node-version: [11, 13]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node from dist
|
2020-05-19 14:25:54 +01:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-06-29 19:56:37 +01:00
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-05-19 14:25:54 +01:00
|
|
|
- name: Verify node and npm
|
2020-06-29 19:56:37 +01:00
|
|
|
run: __tests__/verify-node.sh "${{ matrix.node-version }}"
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
old-versions:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# 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
|
|
|
|
shell: bash
|