diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 682f5732b..70cbfbbbb 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -46,11 +46,18 @@ jobs: 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: | - '/home/runner/.cache/Cypress' + '**/node_modules' '/home/runner/.cache/Cypress' key: ${{ runner.os }}-modules-${{ hashFiles('**/**.lock') }}