We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1368c commit 9627f23Copy full SHA for 9627f23
1 file changed
.github/workflows/ci.yml
@@ -8,10 +8,10 @@ on:
8
branches:
9
- main
10
- renovate/*
11
- - renovate/*
12
13
jobs:
14
lint:
+ if: github.event_name == 'pull_request' || github.event_name == 'push' && github.ref != 'refs/heads/renovate/*' || github.event_name == 'push' && github.ref == 'refs/heads/renovate/*' && github.event.pull_request == null
15
runs-on: ubuntu-latest
16
17
steps:
@@ -32,6 +32,7 @@ jobs:
32
run: pnpm run lint
33
34
test:
35
36
strategy:
37
matrix:
38
os: [ubuntu-latest, windows-latest]
0 commit comments