diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 0d212094bfdb..94139a4332b0 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -8,7 +8,7 @@ name: Coveralls jobs: build: name: Reporter - runs-on: Runner_8cores_Deriv-app + runs-on: Runner_16cores_Deriv-app steps: - name: Checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml deleted file mode 100644 index 24e0cfd216e5..000000000000 --- a/.github/workflows/integration-tests.yml +++ /dev/null @@ -1,29 +0,0 @@ -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