Skip to content

Update ESLint config to be in sync with codebase #231

Update ESLint config to be in sync with codebase

Update ESLint config to be in sync with codebase #231

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: production
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- run: NODE_ENV=development npm install
- run: npm run lint -- --no-fix --max-warnings=0
- run: npm run build