-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (51 loc) · 1.5 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Test code
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
env:
node: 18
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: ${{ env.node }}
- name: npm ci
run: npm ci --prefer-offline --no-audit
- name: npm run test:unit:ci
run: npm run test:unit:ci
env:
NODE_OPTIONS: "--unhandled-rejections=warn"
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: SonarCloud upload coverage
uses: SonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
with:
args: >
-Dsonar.organization=schulcloud-verbund
-Dsonar.projectKey=hpi-schul-cloud_shd-client
-Dsonar.sources=.
-Dsonar.exclusions=src/serverApi/**/*.*
-Dsonar.coverage.exclusions=tests/**/*.*,**/*.unit.ts,**/*.unit.js
-Dsonar.cpd.exclusions=tests/**/*.*,**/*.unit.ts,**/*.unit.js,**/locales/*.ts
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: npm ci
run: npm ci --prefer-offline --no-audit
- name: npm run lint
run: npm run lint