|
|
|
@ -25,7 +25,6 @@ jobs:
|
|
|
|
|
with:
|
|
|
|
|
path: |
|
|
|
|
|
'**/node_modules'
|
|
|
|
|
'/home/runner/.cache/Cypress'
|
|
|
|
|
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
|
|
|
|
|
|
- name: Install Frontend Deps
|
|
|
|
@ -44,21 +43,11 @@ jobs:
|
|
|
|
|
containers: [1]
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
- name: Setup .NET
|
|
|
|
|
uses: actions/setup-dotnet@v1
|
|
|
|
|
with:
|
|
|
|
|
dotnet-version: 5.0.x
|
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
|
with:
|
|
|
|
|
node-version: '14'
|
|
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
|
with:
|
|
|
|
|
path: |
|
|
|
|
|
'**/node_modules'
|
|
|
|
|
'/home/runner/.cache/Cypress'
|
|
|
|
|
key: ${{ runner.os }}-modules-${{ hashFiles('**/**.lock') }}
|
|
|
|
|
|
|
|
|
|
- name: Start Backend
|
|
|
|
|