Skip to content

Commit 987f547

Browse files
fix: CI run only on PRs and pushes to master (#728)
* fix: CI run only on PRs and pushes to master * chore: CI run on node@24 lts
1 parent dfbb4c6 commit 987f547

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: CI
22

33
on:
44
push:
5-
branches: ["**"]
5+
branches:
6+
- master
67
pull_request:
7-
branches: ["**"]
88

99
jobs:
1010
test:
1111
name: Node ${{ matrix.node }} • tests
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
node: ["9", "10", "12", "14", "16", "18", "20", "22"]
15+
node: ["9", "10", "12", "14", "16", "18", "20", "22", "24"]
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 30
1818
steps:

0 commit comments

Comments
 (0)