Skip to content

Commit f7a8118

Browse files
committed
chore: limit CI builds
We don't need duplicate builds on pull requests and pushes. This should cut our actions essentially down to half of what they are now. PR-URL: #3981 Credit: @wraithgar Close: #3981 Reviewed-by: @darcyclarke
1 parent ef45b7b commit f7a8118

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
name: Node CI
22

3-
on: [push, pull_request]
4-
3+
on:
4+
pull_request:
5+
branches:
6+
- '*'
7+
push:
8+
branches:
9+
- release-next
10+
- latest
511
jobs:
612
lint:
713
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)