style(client): custom color and backround QR options #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
# push trigger required to get coveralls monitoring of default branch | |
# pull_request required to get PR coveralls comments | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# no need to bother caching bun deps | |
# https://github.com/oven-sh/setup-bun/issues/14#issuecomment-1714116221 | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v2 | |
- run: bun install | |
- name: Validate | |
run: | | |
bun concurrently \ | |
-c auto \ | |
-n format,lint,typecheck-server,typecheck-client \ | |
'bun dprint check' \ | |
'bun biome check --config-path=.biome.jsonc .' \ | |
'bun tsc --noEmit --project server/tsconfig.json' \ | |
'bun tsc --noEmit --project client/tsconfig.json' |