Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 55f7ee5

Browse files
committed
Add GitHub Action to ensure typetest compiles succesfully
1 parent c219164 commit 55f7ee5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
jobs:
5+
test:
6+
name: Make sure the typetest bundle compiles
7+
runs-on: ubuntu-20.04
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
12+
- name: Install type dependencies
13+
run: npm ci
14+
15+
- name: Install typetest dependencies
16+
run: cd types/typetest && npm ci
17+
18+
- name: Compile typetest bundle
19+
run: cd types/typetest && npm run build

0 commit comments

Comments
 (0)