forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (46 loc) · 1.97 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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