We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72b808d commit a8c176eCopy full SHA for a8c176e
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v3
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '22' # Specify your desired Node.js version
23
24
+ - name: Install dependencies
25
+ run: npm ci
26
27
+ - name: Install tool dependencies
28
+ working-directory: ./tools/TypeScript-DOM-lib-generator
29
30
31
+ - name: Generate ReScript code
32
33
+ run: npm run build
0 commit comments