Skip to content

adds cypress to the UI #15

adds cypress to the UI

adds cypress to the UI #15

Workflow file for this run

name: Lagoon UI CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: yarn
- name: Checkout Repository
uses: actions/checkout@v4
- name: Formatting check
run: |
yarn add [email protected] @trivago/prettier-plugin-sort-imports
yarn format-check
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Linting
run: |
yarn add typescript
yarn lint
cypress-tests:
runs-on: ubuntu-latest
needs: [format-check, lint]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Build and start Lagoon-minimal
run: |
cd test
make up
- name: Run Cypress Tests
uses: cypress-io/github-action@v6
with:
config-file: ./cypress/cypress.config.ts
auto-cancel-after-failures: 1
wait-on: "http://0.0.0.0:3000"
build: yarn build && GRAPHQL_API=http://0.0.0.0:33000/graphql KEYCLOAK_API=http://0.0.0.0:38088/auth yarn start
command: yarn cypress:runAll
- name: Stop Docker containers
run: |
cd test
make down