We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 713205c + 5ce2002 commit f1f40beCopy full SHA for f1f40be
.github/workflows/deploy-frontend.yml
@@ -1,7 +1,7 @@
1
name: Deploy Frontend to Vercel
2
3
on:
4
- pull_request:
+ pull_request_target:
5
branches: [develop]
6
paths: ['client/**']
7
client/README.md
@@ -17,23 +17,23 @@ See [Vite Configuration Reference](https://vite.dev/config/).
17
## Project Setup
18
19
```sh
20
-npm install
+yarn install
21
```
22
23
### Compile and Hot-Reload for Development
24
25
26
-npm run dev
+yarn dev
27
28
29
### Type-Check, Compile and Minify for Production
30
31
32
-npm run build
+yarn build
33
34
35
### Lint with [ESLint](https://eslint.org/)
36
37
38
-npm run lint
+yarn lint
39
0 commit comments