Skip to content

Migrate to ng 18 #570

Migrate to ng 18

Migrate to ng 18 #570

Workflow file for this run

name: Integration
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 21
registry-url: https://registry.npmjs.org
- name: install
run: yarn install --frozen-lockfile
- name: build
run: yarn build
- name: integration test
uses: cypress-io/github-action@v5
with:
start: yarn ngapimock
wait-on: 'http://localhost:9999/dev-interface'
browser: chrome
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FORCE_EXIT: true