Skip to content

Merge pull request #5 from hivesolutions/refactor #25

Merge pull request #5 from hivesolutions/refactor

Merge pull request #5 from hivesolutions/refactor #25

Workflow file for this run

name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
node-version: [8, 9, 10, 11, 12, 13, 14]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}
steps:
- uses: actions/checkout@v1
- run: node --version
- run: npm install
- run: npm install --only=dev
- run: npm run lint
- run: npm test