Skip to content

chore: Bump maxversion for 156.0a1 #322

chore: Bump maxversion for 156.0a1

chore: Bump maxversion for 156.0a1 #322

Workflow file for this run

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