@@ -7,6 +7,9 @@ name: Notify on Push
|
7 | 7 | permissions: |
8 | 8 | contents: read |
9 | 9 | |
| 10 | +env: |
| 11 | +NODE_VERSION: lts/* |
| 12 | + |
10 | 13 | jobs: |
11 | 14 | notifyOnForcePush: |
12 | 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: Install Node.js |
| 40 | +uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 |
| 41 | +with: |
| 42 | +node-version: ${{ env.NODE_VERSION }} |
36 | 43 | - name: Validate commits |
37 | 44 | run: echo "$COMMITS" | npx -q core-validate-commit - |
38 | 45 | id: commit-check |
|