Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 8010ae9

Browse files
authored
Add CI (#1)
1 parent 1bb00bc commit 8010ae9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
pull_request:
8+
branches: [main]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Use Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
23+
- name: Install npm packages
24+
run: npm ci --ignore-scripts
25+
26+
- name: Build
27+
run: npx rescript

0 commit comments

Comments
 (0)