pull/4097/head
tidusjar 3 years ago
parent 5e8e23a3c4
commit 472763c0d3

@ -21,9 +21,22 @@ jobs:
with:
node-version: '14'
- name: Install FrontEnd Deps
- uses: actions/cache@v2
with:
path: './src/Ombi/ClientApp/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v2
with:
path: './tests/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Frontend Deps
run: yarn --cwd ./src/Ombi/ClientApp install
- name: Install Automation Deps
run: yarn --cwd ./tests install
- name: Start Backend
run: |
nohup run -p ./src/Ombi -- --host http://*:3577 &

Loading…
Cancel
Save