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 911eca3 commit 32899deCopy full SHA for 32899de
.github/workflows/unit-tests.yml
@@ -0,0 +1,23 @@
1
+name: Run Unit Tests
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+jobs:
8
+ run-tests:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: '22.x'
18
19
+ - name: Install dependencies
20
+ run: npm i
21
22
+ - name: Run tests
23
+ run: npm run test
0 commit comments