From 6c23ca4925528211fbf10bdae47461f54d8a5bef Mon Sep 17 00:00:00 2001 From: Dmitrii Ostasevich <90881+kwinto@users.noreply.github.com> Date: Tue, 9 Jul 2024 11:46:06 +0200 Subject: [PATCH] add cypress serve to firefox run --- .github/workflows/cypress-firefox.yml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress-firefox.yml b/.github/workflows/cypress-firefox.yml index 640d31bf..35b400ab 100644 --- a/.github/workflows/cypress-firefox.yml +++ b/.github/workflows/cypress-firefox.yml @@ -11,4 +11,4 @@ jobs: node-version: 20.x cache: "npm" - run: npm ci - - run: npm run cypress:run:firefox + - run: npm run test:cypress:firefox diff --git a/package.json b/package.json index b927bb41..efbffcae 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "cypress:run": "cypress run", "cypress:run:firefox": "cypress run --browser firefox", "test:cypress": "run-p -r cypress:serve cypress:run", + "test:cypress:firefox": "run-p -r cypress:serve cypress:run:firefox", "test": "npm run test:cypress", "pretest": "npm run build", "prettier:check": "prettier --check --config .prettierrc.json src/",