Skip to content

Bump json from 20190722 to 20230227 #801

Bump json from 20190722 to 20230227

Bump json from 20190722 to 20230227 #801

Workflow file for this run

name: ESLint
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
env:
NODE_PATH: src/
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 ci
working-directory: ./javascript
- run: npx eslint --max-warnings 0 .
working-directory: ./javascript