Skip to content

chore(frontend): 🤖 lint & format with prettier #2

chore(frontend): 🤖 lint & format with prettier

chore(frontend): 🤖 lint & format with prettier #2

name: continuous integration
on:
- push
jobs:
lint frontend:
steps:
# setup
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "pnpm"
- run: pnpm install
# script
- run: pnpm -C frontend lint:eslint
- run: pnpm -C frontend lint:prettier
- run: pnpm -C frontend check
build frontend:
# setup
- uses: actions/checkout@v4

Check failure on line 26 in .github/workflows/continuousIntgration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/continuousIntgration.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "pnpm"
- run: pnpm install
# script
- run: pnpm -C frontend build