-
Notifications
You must be signed in to change notification settings - Fork 57
71 lines (69 loc) · 2.03 KB
/
Copy pathintegration-tests.yml
File metadata and controls
71 lines (69 loc) · 2.03 KB
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
name: Integration tests
on:
pull_request:
push:
branches:
- master
jobs:
run_integration_tests:
name: Integration tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- uses: actions/setup-node@v4
with:
node-version: 23
env:
CI: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2025-05-09
override: true
- name: Set up OCaml
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: "4.14"
dune-cache: true
cache-prefix: "v1"
- name: Install PPX dependencies
working-directory: packages/rescript-relay/rescript-relay-ppx
run: opam install . --deps-only
- name: Build PPX
working-directory: packages/rescript-relay/rescript-relay-ppx
run: opam exec -- dune build bin/RescriptRelayPpxApp.exe
- name: Install - bindings
working-directory: packages/rescript-relay
run: |
yarn install
- name: Build - compiler & Relay test files
working-directory: packages/rescript-relay
run: |
yarn build:test
- name: git status
id: git_status
run: |
echo 'status<<EOF' >> $GITHUB_OUTPUT
git status --porcelain >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Exit if files modified
run: |
echo "Files have been modified during the build process:"
echo "${{ steps.git_status.outputs.status }}"
exit 1
if: steps.git_status.outputs.status
- name: Build - bindings
working-directory: packages/rescript-relay
run: |
yarn build
- name: Integration tests
working-directory: packages/rescript-relay
run: |
yarn test:ci
- name: Integration tests (preloaded)
working-directory: packages/rescript-relay
env:
ENABLE_PERSISTING: true
run: |
yarn test:ci