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 361cb2c commit a25225fCopy full SHA for a25225f
.github/workflows/validate.yml
@@ -0,0 +1,22 @@
1
+name: Validate Contributors
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
+ push:
7
+ branches: [main]
8
9
+jobs:
10
+ validate:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 24
18
+ cache: npm
19
20
+ - run: npm ci
21
22
+ - run: npx tsx code/check.ts
0 commit comments