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 fdc5310 commit 4e22708Copy full SHA for 4e22708
.github/workflows/test.yml
@@ -0,0 +1,32 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - develop
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ test:
15
+ name: Run Jest Tests
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v4
21
22
+ - name: Setup Node.js
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: '22'
26
+ cache: 'npm'
27
28
+ - name: Install dependencies
29
+ run: npm ci
30
31
+ - name: Run tests
32
+ run: npm test
src/index.js
@@ -41,4 +41,4 @@ async function run(core) {
41
}
42
43
44
-module.exports = { run };
+module.exports = run;
0 commit comments