Skip to content

Lint

Lint #353

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ "dev" ]
schedule:
- cron: '34 10 * * 1'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- run: npm ci --legacy-peer-deps # or yarn install
- name: Lint code
run: npm run lint