We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37bc95 commit e4baf4cCopy full SHA for e4baf4c
.github/workflows/ci.yml
@@ -1,10 +1,22 @@
1
-name: Node.js CI
+name: CI
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - next
8
+ - 'v*'
9
+ paths-ignore:
10
+ - 'docs/**'
11
+ - '*.md'
12
+ pull_request:
13
14
15
16
17
# This allows a subsequently queued workflow run to interrupt previous runs
18
concurrency:
- group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
19
+ group: "${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
20
cancel-in-progress: true
21
22
permissions:
0 commit comments