Skip to content

Fix Badge Fury badge link #29

Fix Badge Fury badge link

Fix Badge Fury badge link #29

Workflow file for this run

name: Lint
defaults:
run:
shell: bash
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Fetch Repository
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24.13.0
cache: 'npm'
cache-dependency-path: |
package-lock.json
examples/package-lock.json
- name: Install Modules
run: npm ci --ignore-scripts
- name: Install Example Modules
run: npm ci --ignore-scripts
working-directory: examples
- name: Run Format Check
run: |
npm run format:ts:ci
npm run format:src:ci
- name: Run Lint
run: npm run lint:all