Skip to content

Commit 35d54f6

Browse files
committed
feat: add Ci to test & verify tinny build
1 parent 5148f01 commit 35d54f6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ jobs:
3232
version: 'latest'
3333
- name: Install project dependencies
3434
run: yarn --frozen-lockfile
35+
- name: Build Tinny
36+
run: yarn build:tinny
37+
- name: Verify Tinny build output
38+
run: |
39+
if [ ! -f "./local-tests/index.js" ]; then
40+
echo "Error: Tinny build output not found"
41+
exit 1
42+
fi
3543
- uses: nrwl/nx-set-shas@v3
3644
with:
3745
main-branch-name: 'master'

0 commit comments

Comments
 (0)