Skip to content

Bump zone.js from 0.11.8 to 0.14.3 in /client #1821

Bump zone.js from 0.11.8 to 0.14.3 in /client

Bump zone.js from 0.11.8 to 0.14.3 in /client #1821

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