Skip to content

Merge pull request #64 from tictactrip/fix/shifter #65

Merge pull request #64 from tictactrip/fix/shifter

Merge pull request #64 from tictactrip/fix/shifter #65

Workflow file for this run

name: Test
"on":
push:
branches:
- master
- renovate/**
pull_request:
types:
- opened
- synchronize
jobs:
test_matrix:
strategy:
matrix:
node-version:
- lts/*
os:
- ubuntu-latest
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
- name: "Use Node.js ${{ matrix.node-version }}"
uses: actions/setup-node@v2
with:
node-version: "${{ matrix.node-version }}"
- uses: bahmutov/npm-install@v1
- run: yarn lint
- run: yarn build
- run: yarn test --coverage