Skip to content

chore: Finish moving all files away from jsx. #230

chore: Finish moving all files away from jsx.

chore: Finish moving all files away from jsx. #230

Workflow file for this run

name: JavaScript linting
on:
push:
branches:
- main
- "[0-9]*"
paths:
- "**.jsx?"
- "**.cjs"
- "**.mjs"
- "**.json"
- package*.json
- ".*eslint*"
- ".*prettier*"
- .github/workflows/lint.yml
pull_request:
branches:
- main
- "[0-9]*"
paths:
- "**.jsx?"
- "**.cjs"
- "**.mjs"
- "**.json"
- package*.json
- ".*eslint*"
- ".*prettier*"
- .github/workflows/lint.yml
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci --force
- name: eslint
run: npm run test:lint
- name: Prettier
run: npm run test:format