Skip to content

Commit 5402a60

Browse files
authored
Add a weekly CI job to build example project (#149)
1 parent fcfbf59 commit 5402a60

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test Examples (Weekly)
2+
on:
3+
schedule:
4+
- cron: 0 14 * * 1
5+
workflow_dispatch:
6+
pull_request:
7+
8+
jobs:
9+
test-examples:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-node@v6
14+
with:
15+
node-version: 24
16+
cache: yarn
17+
- name: Build example
18+
run: yarn && yarn build
19+
working-directory: examples/create-react-app-example

0 commit comments

Comments
 (0)