Skip to content

Add a number of items and minor edits #92

Add a number of items and minor edits

Add a number of items and minor edits #92

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
- run: "./node_modules/.bin/prettier --version"
- name: Validate JSONC files
run: npm run lint