You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
name: Node.js CI
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
node-version: [10.x, 12.x, 13.x, 14.x, 15.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: node --version
|
|
- run: npm --version
|
|
- run: npm install --ignore-scripts
|
|
- run: npm test
|
|
env:
|
|
CI: true
|
|
|
|
test-legacy:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node-version: [11.x, 13.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2.1.5
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: node --version
|
|
- run: npm --version
|
|
- run: npm install --ignore-scripts
|
|
- run: npm run test-only
|
|
env:
|
|
CI: true
|