Skip to content

Merge branch 'develop' of github.com:josdejong/jsoneditor into develop #180

Merge branch 'develop' of github.com:josdejong/jsoneditor into develop

Merge branch 'develop' of github.com:josdejong/jsoneditor into develop #180

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
env:
CI: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm ci
- run: npm run lint
env:
CI: true