mirror of
https://github.com/youfoundjk/TeXcore.git
synced 2026-07-22 07:33:31 +00:00
29 lines
715 B
YAML
29 lines
715 B
YAML
name: Check
|
|
on:
|
|
- push
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '22.x'
|
|
- uses: pnpm/action-setup@v6
|
|
- run: pnpm install --no-frozen-lockfile
|
|
- run: pnpm run lint
|
|
- run: pnpm run compile
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '22.x'
|
|
- uses: pnpm/action-setup@v6
|
|
- run: pnpm install --no-frozen-lockfile
|
|
- run: pnpm run test-update
|