1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-11 00:08:30 +01:00

chore: avoid building frontend if not needed (#4982)

## About the changes
Looks like we're building twice:
https://github.com/Unleash/unleash/actions/runs/6468079228/job/17559391393#step:5:136
This commit is contained in:
Gastón Fournier 2023-10-10 15:35:11 +02:00 committed by GitHub
parent cc4dbe8c92
commit b802ced0f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ jobs:
node-version: 18.17
cache: 'yarn'
- run: yarn
- run: yarn build:frontend
- run: yarn build:frontend:if-needed
- run: yarn lint
- run: yarn run test:report # This adds test results as github check to the workflow
env:

View File

@ -39,7 +39,7 @@ jobs:
node-version: 18.17
cache: 'yarn'
- run: yarn
- run: yarn build:frontend
- run: yarn build:frontend:if-needed
- run: yarn run test:coverage
env:
CI: true