We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8384533 commit 546fcb5Copy full SHA for 546fcb5
.github/workflows/pull_request.yml
@@ -48,6 +48,27 @@ jobs:
48
- name: Run unit tests
49
run: yarn test --maxWorkers=2 --coverage
50
51
+ docs:
52
+ runs-on: ubuntu-latest
53
+ needs: [lint]
54
+ steps:
55
+ - name: Checkout
56
+ uses: actions/checkout@v5.0.0
57
+ with:
58
+ fetch-depth: 0
59
+
60
+ - name: Setup
61
+ uses: ./.github/actions/setup
62
63
+ - name: Generate nitrogen code
64
+ run: yarn nitrogen
65
66
+ - name: Install dependencies
67
+ run: yarn install
68
69
+ - name: Build docs
70
+ run: yarn docs
71
72
build-android:
73
runs-on: ubuntu-latest
74
needs: [lint, test]
@@ -93,7 +114,7 @@ jobs:
93
114
run: yarn build:android
94
115
build-ios:
95
116
runs-on: macos-latest
96
- needs: [lint, test]
117
+ needs: [lint, test, docs]
97
118
env:
98
119
XCODE_VERSION: '26.0.1'
99
120
steps:
0 commit comments