diff --git a/.github/workflows/step-test.yaml b/.github/workflows/step-test.yaml index 9e9193b0..890b5788 100644 --- a/.github/workflows/step-test.yaml +++ b/.github/workflows/step-test.yaml @@ -23,9 +23,11 @@ jobs: steps: - name: Checkout 🛎️ uses: actions/checkout@v1 - - name: Cypress run 📐 - uses: cypress-io/github-action@v6 + - name: Set-up Node 📍 + uses: actions/setup-node@v3 with: - build: npm run build - start: npm run start - wait-on: http://localhost:4200 + node-version: ${{ matrix.node-version }} + - name: Install Deps 📦 + run: npm ci + - name: Test 📐 + run: npm run cy:test