Skip to content

Update playwright-java.yml #9

Update playwright-java.yml

Update playwright-java.yml #9

Workflow file for this run

name: cypress
on:
workflow_dispatch:
inputs:
browser:
description: 'The browser to use'
default: 'chromium'
required: true
type: choice
options:
- chrome
- edge
- electron
- firefox
jobs:
test:
runs-on: ubuntu-latest
container:
image: cypress/browsers
options: --user 1001
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: |
./docker.sh --browser "${{ inputs.browser }}" --docker cypress
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: artifact_test
path: reporting
git add -f docs/*

Check failure on line 35 in .github/workflows/cypress.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cypress.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
git commit -m "Github Commit"
git push origin main