Skip to content

Bump @types/node from 18.16.3 to 20.11.16 in /client #1813

Bump @types/node from 18.16.3 to 20.11.16 in /client

Bump @types/node from 18.16.3 to 20.11.16 in /client #1813

Workflow file for this run

name: End-to-End
on: [push, pull_request]
jobs:
ng-e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache Gradle artifacts (downloaded JARs, the wrapper, and any downloaded JDKs)
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/jdks
key: ${{ runner.os }}-gradle-${{ hashFiles('**/.gradle/') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
cache-dependency-path: ./client/package-lock.json
- name: Run e2e tests
uses: cypress-io/github-action@v6
with:
start: ${{ github.workspace }}/server/gradlew run -p ${{ github.workspace }}/server/
command: npm run e2e
working-directory: ./client