Skip to content

fixed workflow

fixed workflow #68

Workflow file for this run

name: validate
on: push
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint