We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c476de commit 71837b0Copy full SHA for 71837b0
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,20 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15
16
+ - name: Install dependencies
17
+ run: npm install
18
19
+ - name: Run tests
20
+ run: npm test
0 commit comments