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.
2 parents 8a268c8 + 0e0718b commit 1050642Copy full SHA for 1050642
1 file changed
.github/workflows/pr-check.yml
@@ -6,8 +6,27 @@ on:
6
- main
7
8
jobs:
9
+ unit-tests:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '24'
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run unit tests
25
+ run: npm run test
26
27
test-coverage-action:
28
runs-on: ubuntu-latest
29
+ needs: unit-tests
30
31
steps:
32
- name: Checkout code
0 commit comments