Skip to content

Add vscode schema to help defining new config #10

Add vscode schema to help defining new config

Add vscode schema to help defining new config #10

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
testing:
name: Testing on Node v${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- name: Checking out
uses: actions/checkout@v3
- name: Use Node.js v${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install NPM dependencies
run: npm ci
- name: Check lint
run: npm run lint