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 d2bca8a commit 832b4cfCopy full SHA for 832b4cf
.github/workflows/code_health.yaml
@@ -19,3 +19,21 @@ jobs:
19
run: npm ci
20
- name: Run style check
21
run: npm run check
22
+
23
+ run-tests:
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - uses: GitHubSecurityLab/actions-permissions/monitor@v1
27
+ - uses: actions/checkout@v4
28
+ - uses: actions/setup-node@v4
29
+ with:
30
+ node-version-file: package.json
31
+ cache: "npm"
32
+ - name: Install dependencies
33
+ run: npm ci
34
+ - name: Build project
35
+ run: npm run build
36
+ - name: Run tests
37
+ run: npm test
38
+ - name: Generate coverage report
39
+ run: npm run test:coverage
0 commit comments