From 670804de76540d27332e96b07cab4dda41b61cd8 Mon Sep 17 00:00:00 2001 From: thednp Date: Sun, 21 Jul 2024 21:59:23 +0300 Subject: [PATCH] update CI --- .github/workflows/ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2116b518..601efa50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,17 @@ jobs: with: node-version: 20 cache: pnpm - - run: pnpm install --no-frozen-lockfile - - run: pnpm build - - run: pnpm test + + - name: Install Dependencies + run: pnpm install --no-frozen-lockfile + + - name: Install Cypress + run: npx cypress install + + - name: Build + run: pnpm build # includes lint + - name: Build + run: pnpm test - name: Upload coverage report to coveralls.io... uses: coverallsapp/github-action@master