1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-01-17 05:22:18 +00:00
Files
destreamer-mirror/.github/workflows/build.yaml
Adrian Calinescu 352b1eaa5e Reintroduce Node 8.x support (#79)
* Fix Node 8.x support

* Add Node 8.x to CI build matrix
2020-04-21 12:42:08 +03:00

32 lines
574 B
YAML

name: Node CI
on:
push:
paths-ignore:
- 'README.md'
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run -s build
npm test
env:
CI: true