From 8fcccaed23811c618872745dc22d60801f58633a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B6ckelmann?= Date: Fri, 26 Jan 2024 23:56:26 +0100 Subject: [PATCH] Try CI/CD Tests --- .gitea/workflows/demo.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..478fe86 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,25 @@ +name: E2E Testing + +on: + push: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 14 + + - name: Install dependencies + run: npm ci + + - name: Run e2e tests + run: npm run e2e