From dc8cfe14a35030baab5848003499b2c38ad5b2b6 Mon Sep 17 00:00:00 2001 From: aasim Date: Fri, 19 Apr 2024 21:02:40 -0400 Subject: [PATCH] inital Github Actions file --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e69de29..db9ca20 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -0,0 +1,30 @@ +name: CI + +on: + push: + branches: + - feature/integrate-github-actions + +jobs: + test: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + containers: [1, 2, 3] + + 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 install + + - name: Run tests + run: npx cypress run --record --parallel --group ${{ matrix.containers }} +