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 13e90d0 commit 9e97cddCopy full SHA for 9e97cdd
1 file changed
.github/workflows/notify-on-push.yml
@@ -7,6 +7,9 @@ name: Notify on Push
7
permissions:
8
contents: read
9
10
+env:
11
+ NODE_VERSION: lts/*
12
+
13
jobs:
14
notifyOnForcePush:
15
name: Notify on Force Push on `main`
@@ -33,6 +36,10 @@ jobs:
33
36
# cannot use ubuntu-slim here because rtCamp/action-slack-notify is dockerized
34
37
runs-on: ubuntu-24.04-arm
35
38
steps:
39
+ - name: Use Node.js ${{ env.NODE_VERSION }}
40
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
41
+ with:
42
+ node-version: ${{ env.NODE_VERSION }}
43
- name: Validate commits
44
run: echo "$COMMITS" | npx -q core-validate-commit -
45
id: commit-check
0 commit comments