mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 20:54:15 +00:00
19 lines
320 B
YAML
19 lines
320 B
YAML
name: Prettier Check
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
prettier:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20"
|
|
cache: "npm"
|
|
- run: npm ci
|
|
- run: npx prettier --check .
|