-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
51 lines (43 loc) · 1.09 KB
/
tsd.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
name: Typescript Types
on:
pull_request:
paths:
- '.github/workflows/tsd.yml'
- 'package.json'
- 'types/**'
- 'test/types/**'
push:
paths:
- '.github/workflows/tsd.yml'
- 'package.json'
- 'types/**'
- 'test/types/**'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
name: Lint TS-Files
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 18
- run: npm install
- name: Lint TS-Files
run: npm run lint-ts
test-ts-types:
needs:
- lint
runs-on: ubuntu-latest
name: Test Typescript Types
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 16
- run: npm install
- name: Typings
run: npm run test-tsd