We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 201ec71 commit 9dafc6dCopy full SHA for 9dafc6d
1 file changed
.github/workflows/check.yml
@@ -0,0 +1,16 @@
1
+on: [push, pull_request]
2
+jobs:
3
+ check:
4
+ runs-on: ubuntu-latest
5
+ steps:
6
+ - name: Checkout
7
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
8
+
9
+ - name: Setup Node.js
10
+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
11
+ with:
12
+ node-version: "24.11.1"
13
+ cache: "npm"
14
15
+ - name: Check
16
+ run: npm ci
0 commit comments