Skip to content

Lint document and add linting step (#14) #15

Lint document and add linting step (#14)

Lint document and add linting step (#14) #15

Workflow file for this run

name: Linting
# This action works with pull requests and pushes
on: [push, pull_request]
jobs:
prettier:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: npm install
- name: Validate JSONC files
run: npm run lint