Skip to content

chore(lint): setup Prettier + integrate with ESLint and CI (#134) #863

chore(lint): setup Prettier + integrate with ESLint and CI (#134)

chore(lint): setup Prettier + integrate with ESLint and CI (#134) #863

Workflow file for this run

name: check
on:
push:
branches: [develop]
pull_request:
merge_group:
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Prettier check
run: npm run format:check