File tree 7 files changed +26
-412
lines changed
7 files changed +26
-412
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,14 @@ jobs:
15
15
uses : actions/setup-node@v3
16
16
with :
17
17
node-version : 18
18
- - run : find . -name 'package-lock.json' -execdir npm ci \;
19
- - run : npm run dev:test &
20
- - run : npx wait-on tcp:9595
21
- - run : npm run test
18
+ - name : Install dependencies
19
+ run : find . -name 'package-lock.json' -execdir npm ci \;
20
+ - name : Run server
21
+ run : npm start &
22
+ - name : Wait for server to start
23
+ run : npx wait-on tcp:8585
24
+ - name : Run tests
25
+ run : npm run test
22
26
build-latest :
23
27
name : Build branch
24
28
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 14
14
uses : actions/setup-node@v3
15
15
with :
16
16
node-version : 18
17
- - run : npm ci
18
- - run : npm test
17
+ - name : Install dependencies
18
+ run : find . -name 'package-lock.json' -execdir npm ci \;
19
+ - name : Run server
20
+ run : npm start &
21
+ - name : Wait for server to start
22
+ run : npx wait-on tcp:8585
23
+ - name : Run tests
24
+ run : npm run test
19
25
build-latest :
20
26
name : Build latest
21
27
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 15
15
uses : actions/setup-node@v3
16
16
with :
17
17
node-version : 18
18
- - run : npm ci
19
- - run : npm test
18
+ - name : Install dependencies
19
+ run : find . -name 'package-lock.json' -execdir npm ci \;
20
+ - name : Run server
21
+ run : npm start &
22
+ - name : Wait for server to start
23
+ run : npx wait-on tcp:8585
24
+ - name : Run tests
25
+ run : npm run test
20
26
build :
21
27
name : Build with google cloud
22
28
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments