From 59be9ed98983828012ba27058c33c369c2848e2b Mon Sep 17 00:00:00 2001 From: Gilson da Silva Date: Mon, 23 Oct 2023 10:54:49 -0300 Subject: [PATCH] =?UTF-8?q?Adi=C3=A7=C3=A3o=20do=20CI=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..db4b1ad90 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: End-to-end tests 🧪 +on: [push] +jobs: + cypress-run: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + # Install NPM dependencies, cache them correctly + # and run all Cypress tests + - name: Cypress run + uses: cypress-io/github-action@v2 + \ No newline at end of file