Skip to content

test: test

test: test #21

Workflow file for this run

# name: Deriv App PR Test Workflow
# on:
# pull_request:
# branches:
# - master
# jobs:
# build_and_test:
# name: Build And Test
# runs-on: Runner_8cores_Deriv-app
# environment: Preview
# steps:
# - name: Checkout
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
# - name: Setup Node
# uses: "./.github/actions/setup_node"
# - name: Check imports
# run: npm run check-imports
# - 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
# uses: "./.github/actions/build"
# - name: Check TypeScript for @deriv/api
# run: npx tsc --project packages/api/tsconfig.json -noEmit
# - name: Check TypeScript for @deriv/api-v2
# run: npx tsc --project packages/api-v2/tsconfig.json -noEmit
# - name: Check TypeScript for @deriv/hooks
# run: npx tsc --project packages/hooks/tsconfig.json -noEmit
# - name: Check TypeScript for @deriv/utils
# run: npx tsc --project packages/utils/tsconfig.json -noEmit
# - name: Check TypeScript for @deriv/stores
# run: npx tsc --project packages/stores/tsconfig.json -noEmit
# - name: Check TypeScript for @deriv/wallets
# run: npx tsc --project packages/wallets/tsconfig.json -noEmit
# - name: Check ESLint for @deriv/wallets
# run: npx eslint --fix --ignore-path packages/wallets/.eslintignore --config packages/wallets/.eslintrc.js packages/wallets
# - name: Check Stylelint for @deriv/wallets
# run: npx stylelint packages/wallets/**/*.scss
# - name: Check tests for @deriv/hooks
# run: bash ./scripts/check-tests.sh packages/hooks/src
# - name: Check tests for @deriv/utils
# run: bash ./scripts/check-tests.sh packages/utils/src
# - name: Run tests
# run: npm run test:ci