diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39442759..269f8d7e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,13 +11,20 @@ on: - v*.*.* jobs: - cypress-e2e: + cypress-run: runs-on: ubuntu-22.04 steps: - - name: Checkout - uses: actions/checkout@v4 - # Install NPM dependencies, cache them correctly - # and run all Cypress tests + - name: Check out Git repository + uses: actions/checkout@v3 + + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install Dependencies + working-directory: "./clients/react-app" + run: npm install - name: Cypress run uses: cypress-io/github-action@v6 with: