-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (35 loc) · 989 Bytes
/
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
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: Test docs examples
run: |
cd docs
yarn test:examples
install-build:
uses: ./.github/workflows/build-lint.yml
secrets: inherit
unit-integration-test:
uses: ./.github/workflows/unit-integration-test.yml
secrets: inherit
sonar-scan:
uses: ./.github/workflows/sonar.yml
secrets: inherit
needs: unit-integration-test