Skip to content

1.8.0

1.8.0 #211

Workflow file for this run

name: "Run ESLint"
on:
push:
branches:
- develop
pull_request:
branches:
- main
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
check-latest: true
cache: "npm"
- name: npm
run: npm install --no-audit --no-fund --only=dev
- name: lint
run: npm run lint