mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
stuff
This commit is contained in:
parent
5e8e23a3c4
commit
472763c0d3
1 changed files with 14 additions and 1 deletions
15
.github/workflows/cypress.yml
vendored
15
.github/workflows/cypress.yml
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue