Skip to content

Commit 094c57e

Browse files
author
Pelle Wessman
committed
Add type checks
1 parent 1d91717 commit 094c57e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/types.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Type Checks
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: SocketDev/workflows/.github/workflows/type-check.yml@main
21+
with:
22+
ts-versions: ${{ github.event.schedule && 'next' || '4.9,next' }}
23+
ts-libs: 'es2020;esnext'

0 commit comments

Comments
 (0)