[TRAH-3657] shahzaib / removed tradershub v2 package and ci checks #14711
Workflow file for this run
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: Deriv App Integration Test Workflow | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
integration_tests: | |
name: Run Integration Tests | |
runs-on: Runner_8cores_Deriv-app | |
environment: Preview | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Setup Node | |
uses: "./.github/actions/setup_node" | |
- name: Install dependencies | |
uses: "./.github/actions/npm_install_from_cache" | |
# - name: Invalidate NPM Cache | |
# if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
# uses: "./.github/actions/invalidate_npm_cache" | |
- name: Build | |
run: npm run build:all | |
- name: Install Playwright Browsers | |
run: npx playwright install | |
- name: Run component tests | |
run: npm run test:component |