Skip to content

Commit 360363f

Browse files
feat: define missing types (in progress)
1 parent 06fb1d4 commit 360363f

23 files changed

+13349
-9891
lines changed

.github/workflows/integration.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Integration
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
5+
cancel-in-progress: true
6+
7+
on:
8+
pull_request:
9+
push:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v2
20+
21+
- name: Set up Node.js
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: 18.19.0
25+
26+
- name: Install dependencies
27+
run: npm ci
28+
29+
- name: Build TypeScript
30+
run: npm run tsc

0 commit comments

Comments
 (0)