Skip to content

Commit

Permalink
added step names and list dir
Browse files Browse the repository at this point in the history
  • Loading branch information
sadabnepal committed Aug 8, 2023
1 parent c43e70d commit 603bac6
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ jobs:
with:
node-version: 16
cache: 'npm'
- run: npm install
- run: npm run smoke
- name: Install Node.js
run: npm install
- name: run smoke suite
run: npm run smoke

regression:
needs: [smoke]
needs: [ smoke ]
runs-on: ubuntu-latest

steps:
Expand All @@ -33,8 +35,11 @@ jobs:
with:
node-version: 16
cache: 'npm'
- run: npm install
- run: npm run regression
- name: Install Node.js
run: npm install
- run: ls -ltr
- name: run smoke regression
run: npm run regression

- name: Generate Cucumber HTML Report
if: always()
Expand Down

0 comments on commit 603bac6

Please sign in to comment.