-
Notifications
You must be signed in to change notification settings - Fork 8
100 lines (83 loc) · 1.94 KB
/
ci.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: CI
on:
push:
branches:
- main
- v2
pull_request:
branches:
- main
- v2
workflow_dispatch:
jobs:
build-jsoo:
strategy:
fail-fast: false
matrix:
ocaml-compiler:
- "4.08"
- "4.12"
- "4.14"
- "5.0"
- "5.1"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set-up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Set-up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
- name: Install .NET Dependencies
run: |
dotnet restore ts2ocaml.sln
dotnet tool restore
- name: Install OCaml Dependencies
run: opam install . --deps-only
- name: Build and test the project
run: bash fake TestJsoo
build-res:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set-up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Set-up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install .NET Dependencies
run: |
dotnet restore
dotnet tool restore
- name: Run FAKE
run: bash fake TestRes
auto-merge:
name: Auto-Merge PRs by Dependabot
needs:
- build-jsoo
- build-res
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
target: minor
exclude: "typescript"
merge-method: merge