Skip to content

Commit 42c988f

Browse files
authored
set up a cron to build the action's javascript (#96)
* set up a cron to build the action's javascript * also analyze during the build workflow
1 parent 007c7cb commit 42c988f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ name: Build
55
on:
66
pull_request:
77
branches: [main]
8+
schedule:
9+
- cron: "0 0 * * 0" # Run every Sunday at 00:00.
810

911
jobs:
1012
build:
@@ -15,4 +17,5 @@ jobs:
1517
with:
1618
sdk: dev
1719
- run: dart pub get
20+
- run: dart analyze --fatal-infos
1821
- run: dart tool/sig.dart --verify

0 commit comments

Comments
 (0)