chore(ci): update prettier and eslint script (#7)

This commit is contained in:
Shahrad Elahi
2024-04-27 00:01:28 +03:30
committed by GitHub
parent 4820cfd764
commit 55d89d7990
3 changed files with 11 additions and 12 deletions

View File

@@ -2,18 +2,16 @@ name: CI
on:
push:
branches:
- canary
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
group: '${{ github.workflow }}-${{ github.event.number || github.sha }}'
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
check:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -25,10 +23,11 @@ jobs:
node-version: 20
cache: 'pnpm'
- run: pnpm install -C web
- run: pnpm run -C web check:format
- run: pnpm -r install --frozen-lockfile
- run: pnpm --if-present format:check
- run: pnpm --if-present lint
ghcr-build:
image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3