Skip to content

Commit 1f85e77

Browse files
committed
Add more workflows
1 parent 61e4ba4 commit 1f85e77

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: '17 16 * * 2'
10+
11+
jobs:
12+
analyze:
13+
uses: voxpelli/ghatemplates/.github/workflows/codeql-analysis.yml@main
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 'Dependency Review'
2+
3+
on: [pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
dependency-review:
10+
uses: voxpelli/ghatemplates/.github/workflows/dependency-review.yml@main
11+

.github/workflows/ts-internal.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Type Checks, Internal Types
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- main
12+
schedule:
13+
- cron: '14 5 * * 1,3,5'
14+
15+
permissions:
16+
contents: read
17+
18+
jobs:
19+
type-check:
20+
uses: voxpelli/ghatemplates/.github/workflows/type-check.yml@main
21+
with:
22+
ts-versions: ${{ github.event.schedule && 'next' || '5.0,next' }}
23+
ts-libs: 'es2021;esnext'

0 commit comments

Comments
 (0)