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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

View File

@ -1,7 +1,7 @@
.DS_Store
node_modules
/build
.svelte-kit
web
/package
.env
.env.*

View File

@ -11,8 +11,8 @@
"start": "pnpm docker:drop && docker compose -f docker-compose.yml up",
"docker:build": "docker buildx build --tag wireadmin .",
"docker:drop": "docker compose rm -fsv",
"format": "prettier --write . && pnpm -r format",
"format:check": "prettier --check . && pnpm -r format:check"
"format": "prettier --write . && pnpm --if-present -r format",
"format:check": "prettier --check . && pnpm --if-present -r format:check"
},
"keywords": [],
"license": "GPL-3.0",