update apk route and swagger #549
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: CI | |
on: push | |
env: | |
UT_CI: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.7 | |
- run: npm install nodemon | |
- name: launch backend | |
run: ./launch.sh | |
- name: check exit code | |
if: steps.script.outputs.exitCode != 0 | |
run: fail "Exit code is not 0" |