-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (47 loc) · 1.25 KB
/
nightly.yml
File metadata and controls
53 lines (47 loc) · 1.25 KB
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
name: Nightly Pipeline
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
env:
JAVA_VERSION: '21'
NODE_VERSION: '24'
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
mutation-test-kotlin:
name: Mutation Tests (Kotlin)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-java-gradle
with:
java-version: ${{ env.JAVA_VERSION }}
- run: ./gradlew pitest || true
- uses: actions/upload-artifact@v7
with:
name: pitest-reports
path: '**/build/reports/pitest/'
mutation-test-frontend:
name: Mutation Tests (Frontend)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-node-pnpm
with:
node-version: ${{ env.NODE_VERSION }}
- run: pnpm --filter @personal-stack/auth-ui stryker run || true
system-tests:
name: System Tests
uses: ./.github/workflows/system-tests.yml
with:
java-version: '21'
fail-fast: false
security-advanced:
name: Advanced Security Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Semgrep
uses: semgrep/semgrep-action@v1
with:
config: auto