File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : CI
1+ # This is an example workflow file
2+ name : Automated Tests
23
34on :
45 push :
910 - main
1011
1112jobs :
12- build :
13+ test :
1314 runs-on : ubuntu-latest
14-
1515 steps :
16- - name : Checkout code
17- uses : actions/checkout@v2
18-
19- - name : Set up Node.js
20- uses : actions/setup-node@v2
21- with :
22- node-version : ' 18'
16+ - name : Check out code
17+ uses : actions/checkout@v2
2318
24- - name : Install dependencies
25- run : npm install
19+ - name : Run automated tests
20+ run : |
21+ cd ./automated-testing
22+ # Run your test command here
23+ working-directory : ./automated-testing
24+
25+ - name : Build
26+ run : |
27+ cd ./automated-testing
28+ # Your build commands here
29+ working-directory : ./automated-testing
2630
27- - name : Run tests
28- run : npm test
31+ - name : Deploy
32+ run : |
33+ cd ./automated-testing
34+ # Your deployment commands here
35+ working-directory : ./automated-testing
You can’t perform that action at this time.
0 commit comments