-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (34 loc) · 952 Bytes
/
ci-tests.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
name: Run Tests
on:
push:
branches:
- main
workflow_dispatch:
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Checkout lively.next
uses: actions/checkout@v3
with:
repository: LivelyKernel/lively.next
ref: 5c9cee13d5e54979899c216b62193b74395b3537
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '18.12.1'
- name: Install lively.next
run: |
chmod a+x ./install.sh
./install.sh
- name: Checkout Project Repository
uses: actions/checkout@v3
with:
path: local_projects/engageLively--galyleo-dashboard
- name: Start lively.next
run: |
./start-server.sh > /dev/null 2>&1 &
# wait until server is guaranteed to be running
sleep 30
- name: Run CI Test Script
run: ./scripts/test.sh engageLively--galyleo-dashboard