Skip to content

Commit f1f40be

Browse files
authored
Merge pull request #61 from LiusCraft/ci/fix-deploy-web
ci/cd(frontend): fix deploy web on
2 parents 713205c + 5ce2002 commit f1f40be

File tree

3 files changed

+2705
-5
lines changed

3 files changed

+2705
-5
lines changed

.github/workflows/deploy-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Deploy Frontend to Vercel
22

33
on:
4-
pull_request:
4+
pull_request_target:
55
branches: [develop]
66
paths: ['client/**']
77

client/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ See [Vite Configuration Reference](https://vite.dev/config/).
1717
## Project Setup
1818

1919
```sh
20-
npm install
20+
yarn install
2121
```
2222

2323
### Compile and Hot-Reload for Development
2424

2525
```sh
26-
npm run dev
26+
yarn dev
2727
```
2828

2929
### Type-Check, Compile and Minify for Production
3030

3131
```sh
32-
npm run build
32+
yarn build
3333
```
3434

3535
### Lint with [ESLint](https://eslint.org/)
3636

3737
```sh
38-
npm run lint
38+
yarn lint
3939
```

0 commit comments

Comments
 (0)