From 90ea481d69cb0c66f26949de43020bce796e2181 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Thu, 5 Dec 2019 08:00:25 -0500 Subject: [PATCH] Add action to run Cypress tests Example action ```yml name: End-to-end tests on: [push] jobs: cypress-run: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 # Install NPM dependencies, cache them correctly # and run all Cypress tests - name: Cypress run uses: cypress-io/github-action@v1 ``` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0c93d0d..7c514d5 100644 --- a/README.md +++ b/README.md @@ -256,6 +256,7 @@ https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.s - [Catch insensitive, inconsiderate writing in your markdown docs](https://github.com/theashraf/alex-action) - [Run TestCafe tests](https://github.com/DevExpress/testcafe-action) - [Run Unity tests](https://github.com/webbertakken/unity-test-runner) +- [Run Cypress E2E tests](https://github.com/cypress-io/github-action) ### Security