Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
ci: update client CI
Browse files Browse the repository at this point in the history
  • Loading branch information
velenyx committed Sep 8, 2023
1 parent f84670d commit d218702
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:

- name: Run Linting
working-directory: ./client
run: yarn lint:ts
run: yarn lint:ts:check

- name: Run Prettier formatter
working-directory: ./client
run: yarn format
run: yarn prettier:check

- name: Build project
working-directory: ./client
Expand Down
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "npx eslint \"**/*.{ts,tsx}\"",
"lint:ts:check": "npx eslint \"**/*.{ts,tsx}\"",
"lint:ts:fix": "npx eslint \"**/*.{ts,tsx}\" --fix",
"prettier": "npx prettier --check **/*.{ts,tsx,css,mdx}",
"prettier:check": "npx prettier --check **/*.{ts,tsx,css,mdx}",
"prettier:fix": "prettier --write .",
"prepare": "cd .. && husky install ./client/.husky",
"storybook": "storybook dev -p 6006",
Expand Down

0 comments on commit d218702

Please sign in to comment.