Skip to content

readme: minor tweaks 📝; 3.0.2 #19

readme: minor tweaks 📝; 3.0.2

readme: minor tweaks 📝; 3.0.2 #19

Workflow file for this run

name: test
on: [
push,
pull_request
]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '16']
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm test