diff --git a/.github/workflows/frontend-dev.yaml b/.github/workflows/frontend-dev.yaml index 0dd9989f8..548ed2537 100644 --- a/.github/workflows/frontend-dev.yaml +++ b/.github/workflows/frontend-dev.yaml @@ -6,27 +6,7 @@ concurrency: cancel-in-progress: true jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 20 - - - name: Install dependencies - run: yarn install - - - name: Run tests - run: | - cd frontend - yarn test - build: - needs: test runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/frontend-tests.yaml b/.github/workflows/frontend-tests.yaml index f252cbc36..8ce6e9995 100644 --- a/.github/workflows/frontend-tests.yaml +++ b/.github/workflows/frontend-tests.yaml @@ -24,5 +24,5 @@ jobs: - name: Run tests working-directory: frontend - run: yarn test --watchAll + run: yarn test:ci --watchAll diff --git a/.github/workflows/frontend.yaml b/.github/workflows/frontend.yaml index 1c868b7cc..1dc69c580 100644 --- a/.github/workflows/frontend.yaml +++ b/.github/workflows/frontend.yaml @@ -12,27 +12,7 @@ concurrency: cancel-in-progress: true jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 20 - - - name: Install dependencies - run: yarn install - - - name: Run tests - run: | - cd frontend - yarn test - build: - needs: test runs-on: ubuntu-latest steps: - name: Checkout