fixed bug report and publish in top bar #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |