Skip to content

Commit

Permalink
chore: limit CI builds
Browse files Browse the repository at this point in the history
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
  • Loading branch information
wraithgar committed Nov 3, 2021
1 parent ef45b7b commit f7a8118
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: Node CI

on: [push, pull_request]

on:
pull_request:
branches:
- '*'
push:
branches:
- release-next
- latest
jobs:
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit f7a8118

Please sign in to comment.