File tree 8 files changed +36303
-10504
lines changed
8 files changed +36303
-10504
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,24 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
14
+ - uses : actions/setup-node@v3
15
+ with :
16
+ node-version : 16
17
+ cache : ' npm'
14
18
- uses : cypress-io/github-action@224f894ce0b082eba28a3a4562f630c54a17b432
15
19
with :
16
- start : yarn serve
20
+ start : npm run serve
17
21
wait-on : ' http://localhost:8080'
18
22
19
23
deploy :
20
24
needs : cypress
21
25
runs-on : ubuntu-latest
22
26
steps :
23
27
- uses : actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
28
+ - uses : actions/setup-node@v3
29
+ with :
30
+ node-version : 16
31
+ cache : ' npm'
24
32
- name : set deployment parameters
25
33
run : |
26
34
if ${{ github.ref == 'refs/heads/main' }}
43
51
fi
44
52
- uses : actions/setup-node@fd4bd829f2dd6b6c1420bd94a93449c54612ffc2
45
53
if : env.DESTINATION_DIR
46
- - run : yarn install && yarn build
54
+ - run : npm install && npm run build
47
55
if : env.DESTINATION_DIR
48
56
- name : deploy
49
57
if : env.DESTINATION_DIR
Original file line number Diff line number Diff line change 2
2
3
3
## Project setup
4
4
```
5
- yarn install
5
+ npm install
6
6
```
7
7
8
8
### Compiles and hot-reloads for development
9
9
```
10
- yarn serve
10
+ npm run serve
11
11
```
12
12
13
13
### Compiles and minifies for production
14
14
```
15
- yarn build
15
+ npm run build
16
16
```
17
17
18
18
### Lints and fixes files
19
19
```
20
- yarn lint
20
+ npm run lint
21
21
```
22
22
23
23
### Customize configuration
Original file line number Diff line number Diff line change 1
1
{
2
- "baseUrl" : " http://localhost:8080"
2
+ "baseUrl" : " http://localhost:8080" ,
3
+ "defaultCommandTimeout" : 10000
3
4
}
4
5
You can’t perform that action at this time.
0 commit comments