From 472763c0d30ca664b6586b93b51139d9b3c1223c Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 9 Mar 2021 16:15:23 +0000 Subject: [PATCH] stuff --- .github/workflows/cypress.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 0edffadb5..32eeef115 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -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 &