Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 2.75 KB

DEVELOPMENT.md

File metadata and controls

66 lines (45 loc) · 2.75 KB

Development

Testing via examples

  1. Add a new example project in examples folder. It is a regular NPM package with its own package.json and Cypress dev dependency.
  2. Add a corresponding .github/workflows YAML file that uses this action and runs inside examples/X working directory. The example should demonstrate the feature
  3. Add workflow badge to README if needed

Testing against another repo

  1. Create a new local branch for any development, for example git checkout -b featureA
  2. Update the source code in index.js
  3. Build dist file(s) using npm run build
  4. Commit any changed files, note the SHA of the commit
  5. Push the local branch to GitHub
  6. In a test repository, create a test branch, change the action to point at the new commit. Example
name: End-to-end tests
on: push
jobs:
  cypress-run:
    runs-on: 22.04
    steps:
      - uses: actions/checkout@v3
      # use specific commit pushed to GitHub
      - uses: cypress-io/github-action@<full commit SHA>

You can use cypress-gh-action-example or cypress-gh-action-monorepo as test projects.

  1. Push the change and make sure the new feature performs correctly. If yes, open a pull request.

For pull request reviewers:

  1. When merging a pull request, squash all commits into one.
  2. Make sure the commit subject and body follow semantic commit convention. For instance, keeping it simple:
feat: added new parameter
fix: fixed a bug

If you need to bump the major version, mark it as breaking change in the body of the commit's message like:

fix: upgrade dependency X

BREAKING CHANGE: requires minimum Node.js 14 to run
  1. New versions of this action will be released automatically by the CI, see .github/workflows/main.yml. This will create a new GitHub release and will update the current /v5 branch. Thus specifying - uses: cypress-io/github-action@v5 selects the new version automatically.

Updating the latest version in GitHub Marketplace

Seems to be a manual process right now. After a new release has been created, go to the release and click "Edit"

Edit the release

Review the release info, make sure the "publish ..." checkbox is checked

Review the release

After clicking "Update the release" check that the Marketplace https://github.com/marketplace/actions/cypress-io has been updated.

Latest release in marketplace