Skip to content

Merge pull request #5 from robotical/robdobsn-main #18

Merge pull request #5 from robotical/robdobsn-main

Merge pull request #5 from robotical/robdobsn-main #18

Workflow file for this run

# name: Lint and test
# on: [push, pull_request]
# jobs:
# build_and_test:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# nodejs: [12, 14, 16, 17]
# steps:
# - uses: actions/checkout@v2
# # https://github.com/actions/setup-node
# - uses: actions/setup-node@v2-beta
# with:
# node-version: ${{ matrix.nodejs }}
# - run: npm install
# - run: npm run test
# - run: npm run lint
# - run: npm run build-all