mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
Ensures dmg-license can be installed on Linux CI runners even though it's a darwin-only package. The --force flag allows npm to skip platform mismatches. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
32 lines
568 B
YAML
32 lines
568 B
YAML
name: Format Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
cache-dependency-path: package-lock.json
|
|
|
|
- name: Install dependencies
|
|
run: npm install --ignore-scripts --force
|
|
|
|
- name: Check formatting
|
|
run: npm run format:check
|