We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a92501a commit eecd425Copy full SHA for eecd425
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+# Node.js CI for running tests
2
+name: Node.js CI
3
+
4
+on:
5
+ push:
6
+ branches: ["master"]
7
+ pull_request:
8
9
+ workflow_dispatch:
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '22'
21
+ - name: Install dependencies
22
+ run: npm ci
23
+ - name: Run tests
24
+ run: node --test
0 commit comments