Skip to content

Update cypress-ci.yaml #103

Update cypress-ci.yaml

Update cypress-ci.yaml #103

Workflow file for this run

name: Cypress Tests
on:
workflow_dispatch:
inputs:
pr-number:
description: Pull request number
required: false
type: string
jobs:
cypress-run:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: cache
uses: actions/cache@v4
with:
path: "tests/functional"
key: node-modules-${{ hashFiles('tests/functional/package.json') }}
- name: cypress install
uses: cypress-io/github-action@v6
with:
working-directory: '${{ github.workspace }}/tests/functional'
env:
#PR_NUMBER: ${{ github.event.inputs.pr-number }}
CYPRESS_keycloakUsername: ${{secrets.keycloakUsername}}
CYPRESS_keycloakPassword: ${{secrets.keycloakPassword}}
if: ${{ github.event.inputs.pr-number }} != '' && success()
with:

Check failure on line 38 in .github/workflows/cypress-ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/cypress-ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 38
CYPRESS_keycloakUsername: ${{secrets.keycloakUsername}}
CYPRESS_keycloakPassword: ${{secrets.keycloakPassword}}
CYPRESS_depEnv: pr-${{ github.event.inputs.pr-number }}
- uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: '${{ github.workspace }}/tests/functional/screenshots'
# mkdir artifacts
# cp -r cypress/screenshots artifacts/screenshots
# - name: Archive Cypress report
#uses: actions/upload-artifact@v2
#with:
#name: cypress-report
#path: artifacts