Run test cases without reports #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run test cases without reports | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: 'master' | |
push: | |
branches: 'master' | |
jobs: | |
runTcs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get repo | |
id: 'A1' | |
uses: actions/checkout@v4 | |
- name: Setup node | |
id: 'A2' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.X' | |
- name: Run test cases on chrome report | |
id: 'A3' | |
run: npm run test |