32 lines
980 B
YAML
32 lines
980 B
YAML
name: CI
|
|
on: [ push, pull_request ]
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ ubuntu-latest, windows-latest ]
|
|
node: [ "0.10", 0.12, 4, 6, 8, 10, latest ]
|
|
script: [ compress, mocha, release/benchmark, release/jetstream ]
|
|
name: ${{ matrix.os }} ${{ matrix.node }} ${{ matrix.script }}
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
NODE: ${{ matrix.node }}
|
|
TYPE: ${{ matrix.script }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: tmp
|
|
key: tmp ${{ matrix.script }}
|
|
- name: Perform tests
|
|
shell: bash
|
|
run: |
|
|
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
|
|
. ~/.nvs/nvs.sh --version
|
|
nvs add $NODE
|
|
nvs use $NODE
|
|
node --version
|
|
npm --version --no-update-notifier
|
|
npm install --no-audit --no-optional --no-save --no-update-notifier
|
|
node test/$TYPE
|