Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/example-cypress-github-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@ name: Example Cypress GitHub Actions
# Cypress JavaScript GitHub Action (https://github.com/cypress-io/github-action) with
# Cypress Docker images (https://github.com/cypress-io/cypress-docker-images)

# The workflow is triggered manually on demand, see
# https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow
# To automatically trigger a workflow, for instance on a push event, see
# https://docs.github.com/en/actions/using-workflows/triggering-a-workflow
# for options and examples.
# The workflow can be triggered manually on demand, see
# https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow

on: workflow_dispatch
on:
push:
paths:
- '.github/workflows/example-cypress-github-action.yml'
pull_request:
paths:
- '.github/workflows/example-cypress-github-action.yml'
workflow_dispatch:

jobs:
docker-base:
Expand Down