-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (44 loc) · 1.42 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
name: CI
on: [push, repository_dispatch]
jobs:
test:
name: Build and run tests
runs-on: ubuntu-20.04
steps:
- name: Checkout testbed
uses: actions/checkout@v3
with:
path: live_state_testbed
- name: Checkout live_state
uses: actions/checkout@v3
with:
repository: launchscout/live_state
path: live_state
- name: Checkout phx-live-state
uses: actions/checkout@v3
with:
repository: launchscout/phx-live-state
path: phx-live-state
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
otp-version: '25.1' # Define the OTP version [required]
elixir-version: '1.14.0' # Define the elixir version [required]
- name: install phx-live-state assets
run: npm install
working-directory: phx-live-state
- name: build phx-live-state
run: npm run build
working-directory: phx-live-state
- name: Install testbed dependencies
run: mix deps.get
working-directory: live_state_testbed
- name: install testbed assets
run: npm install
working-directory: live_state_testbed/assets
- name: build testbed javascript
run: mix esbuild default
working-directory: live_state_testbed
- name: Run testbed integration tests
run: mix test
working-directory: live_state_testbed