Skip to content

Commit 03c8ad4

Browse files
committed
ci: Add check for node.keys
1 parent 5736a83 commit 03c8ad4

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/node-keys.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Node.js Release Key Check
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- keys/node.keys
7+
- .github/node-keys.yml
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
if: github.repository_owner == 'nodejs'
16+
17+
steps:
18+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
19+
20+
- name: Run automation script
21+
run: ./update-keys.sh
22+
23+
- name: Ensure no git changes
24+
run: git diff --exit-code

0 commit comments

Comments
 (0)