Files
Termix/.github/workflows/pr-check.yml
ZacharyZcR d35bd139ae chore: fix lightningcss optional dependencies in CI
Add lightningcss to the force reinstall step to fix npm optional
dependencies bug for both rollup and lightningcss on Linux x64.
2025-10-10 00:14:06 +08:00

40 lines
739 B
YAML

name: PR Check
on:
pull_request:
branches: [main, dev-*]
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Fix optional dependencies
run: |
npm install rollup --force
npm install lightningcss --force
- name: Run ESLint
run: npx eslint .
- name: Run Prettier check
run: npx prettier --check .
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build