-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Optimize CI workflow to run tests and linting only on relevant fi…
…le changes (#1149) * ci: Optimize CI workflow to run tests and linting only on relevant file changes * refactor: Only run storybook workflow on relevant changes * temp: Update frontend file to trigger test * temp: Remove workflow paths condition * refactor: Split CI workflow for frontend and backend test & linting * chore: Update CI workflows to include pull requests for backend and frontend * chore: Remove backend path condition from CI workflow * chore: Remove change from frontend & add one to backend to test trigger backend test & lint workflow * refactor: Remove trigger backend test & lint jobs from base settings * ci: Start storybook workflow only when specific files have changes in a push or PR * chore: Remove trailing whitespace in App.tsx file * chore: Remove trailing whitespace in App.tsx file * chore: Update CI workflows to include .yarn folder in paths for frontend and pull requests * chore: Update CI workflows to include changes in their own workflow file, .env-github-actions and docker-compose.yaml as conditions to run
- Loading branch information
1 parent
4ab1db5
commit 8786e75
Showing
3 changed files
with
90 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Frontend Test & Lint | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'frontend/**' | ||
- '.yarn' | ||
- '.github/workflows/ci-frontend.yml' | ||
- 'docker-compose.yaml' | ||
pull_request: | ||
paths: | ||
- 'frontend/**' | ||
- '.yarn' | ||
- '.github/workflows/ci-frontend.yml' | ||
- 'docker-compose.yaml' | ||
|
||
jobs: | ||
|
||
frontend-test: | ||
name: Test Frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run Frontend Tests | ||
run: sudo docker-compose --env-file .env-github-actions run client yarn test:ci | ||
|
||
frontend-coverage-badge: | ||
name: Generate Frontend Coverage Badge | ||
needs: frontend-test | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/develop' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Generate Frontend Coverage Report (XML) and Badge | ||
run: | | ||
sudo docker-compose --env-file .env-github-actions run client yarn test:ci | ||
sudo docker-compose --env-file .env-github-actions run client yarn coverage-badges -s public/coverage/coverage-summary.json -o public/coverage/coverage-frontend-badge-new.svg --label 'Frontend Code Coverage' | ||
- name: Push Frontend Coverage Badge to separate branch | ||
continue-on-error: true | ||
run: | | ||
if git ls-remote --heads origin code-coverage-badges; then | ||
git fetch origin code-coverage-badges | ||
git checkout code-coverage-badges | ||
else | ||
git checkout -b code-coverage-badges | ||
git push origin code-coverage-badges | ||
fi | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
rm frontend/coverage-frontend-badge.svg -f | ||
sudo mv frontend/public/coverage/coverage-frontend-badge-new.svg frontend/coverage-frontend-badge.svg | ||
git add frontend/coverage-frontend-badge.svg | ||
git commit -m "Add frontend coverage badge for commit $GITHUB_SHA" | ||
git push origin code-coverage-badges | ||
# Check if there are any changes | ||
if git diff --staged --quiet; then | ||
echo "No changes in coverage badge. Skipping commit and push." | ||
else | ||
git commit -m "Add frontend coverage badge for commit $GITHUB_SHA" | ||
git push origin code-coverage-badges | ||
fi | ||
frontend-lint: | ||
name: Lint Frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: sudo docker-compose --env-file .env-github-actions run client yarn lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters