Skip to content

chore: migrate eslint to flat config #1501

chore: migrate eslint to flat config

chore: migrate eslint to flat config #1501

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Intall deps
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test -- --watch=false
- name: Build
run: npm run build:prod