Skip to content

chore: skip lint on node v4 #32

chore: skip lint on node v4

chore: skip lint on node v4 #32

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version:
- 4
- 6
- 8
- 10
- 12
- 14
- 16
- 18
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test-without-lint
- name: run lint (node >= 6)
run: npm run lint
if: matrix.node-version >= 6