Skip to content

feat(ci): run format locally #2

feat(ci): run format locally

feat(ci): run format locally #2

Workflow file for this run

name: format-lint.yaml
on:
push:
branches-ignore:
- master
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- name: Prettier check
run: npm run format:check
- name: Lint the code
run: npm run lint