-
Notifications
You must be signed in to change notification settings - Fork 9
57 lines (45 loc) · 1.35 KB
/
on-pr.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
48
49
50
51
52
53
54
55
56
57
name: PR Checks
on:
pull_request:
branches:
- main
jobs:
doc-examples:
name: Execute doc examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Build SDK
run: |
rm -rf ./**/node_modules/
yarn install
yarn build
- name: Start Thor solo node
id: start-solo
run: yarn start-thor-solo
- name: Test docs examples
run: |
yarn test:examples
- name: Stop Thor solo node
id: stop-solo
run: yarn stop-thor-solo
test-apps:
uses: ./.github/workflows/test-apps.yml
secrets: inherit
rpc-proxy:
uses: ./.github/workflows/rpc-proxy.yml
secrets: inherit
install-build:
uses: ./.github/workflows/build-lint.yml
secrets: inherit
unit-integration-test:
uses: ./.github/workflows/unit-integration-test.yml
secrets: inherit
unit-integration-test-browser:
uses: ./.github/workflows/unit-integration-test-browser.yml
secrets: inherit