Skip to content

Commit 9bcb947

Browse files
committed
Run ci twice a week
1 parent ab1b331 commit 9bcb947

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build_and_lint.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
---
22

33
name: Build and lint
4-
on: push
4+
on:
5+
push: {}
6+
schedule:
7+
# Runs at 00:00 on Monday and Thursday
8+
- cron: '0 0 * * 1,4'
59
jobs:
610
build_and_lint:
711
runs-on: ubuntu-latest
@@ -15,3 +19,5 @@ jobs:
1519
run: npm run build
1620
- name: Run tests
1721
run: npm run test
22+
- name: Run ethereum tests
23+
run: npm run test:ethereum

0 commit comments

Comments
 (0)