diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 0fca2e69..f5987efb 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -13,6 +13,6 @@ jobs: env: NEXT_PUBLIC_ACM_API_URL: https://testing.api.acmucsd.com/api/v2 with: - start: yarn dev + start: yarn dev:start wait-on: 'http://localhost:3000' install-command: yarn install diff --git a/package.json b/package.json index c17e7f92..8d8409f2 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ "lint": "yarn lint:js && yarn lint:css", "lint:fix": "yarn prettier && eslint --fix \"src/**/*.+(js|jsx|ts|tsx)\" && stylelint --fix \"**/*.scss\"", "type-css": "yarn typed-scss-modules src/ --exportType default --logLevel silent --watch", - "dev": "next dev", - "run": "yarn type-css & yarn lint && next dev", + "dev": "yarn type-css & yarn lint && next dev", + "dev:start": "next dev", "build": "next build", "start": "next start", "prod": "next build && next start",