We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c627a commit 7f9c19cCopy full SHA for 7f9c19c
2 files changed
.github/workflows/tests.yml
@@ -0,0 +1,29 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v3
18
19
+ - name: Set up Node
20
+ uses: actions/setup-node@v3
21
+ with:
22
+ node-version: 20
23
+ cache: "npm"
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Run tests
29
+ run: npm test
0 commit comments