chore(deps): update dependency @vitejs/plugin-react-swc to v3.7.0 #1162
Workflow file for this run
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
name: 🚀 Push Checks Workflow | |
on: | |
push: | |
branches-ignore: | |
- main | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: 🫸 Push Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🧬 Setup Biome | |
uses: biomejs/setup-biome@v2 | |
- name: 👣 Retrieve Git REF | |
run: echo "GIT_REF=$(git rev-parse origin/main)" >> $GITHUB_ENV | |
# - name: 🐛 Debug Git REF | |
# run: echo "${{ env.GIT_REF }}" | |
- name: 🧬 Lint code (with Biome) | |
continue-on-error: true | |
run: | | |
biome check \ | |
--apply \ | |
--changed \ | |
--since=${{ env.GIT_REF }} \ | |
--formatter-enabled=false \ | |
--linter-enabled=true \ | |
--organize-imports-enabled=false \ | |
--vcs-enabled=true \ | |
--vcs-use-ignore-file=true \ | |
--verbose \ | |
--no-errors-on-unmatched \ | |
--diagnostic-level=info \ | |
--log-level=warn \ | |
--max-diagnostics=100 \ | |
. | |
- name: 🚦 Git Auto Commit Lint fixes (with Biome) | |
uses: stefanzweifel/git-auto-commit-action@v5.0.1 | |
with: | |
commit_message: "chore: lint code with Biome [skip ci]" | |
- name: 💅 Format code (with Biome) | |
continue-on-error: true | |
run: | | |
biome check \ | |
--apply \ | |
--changed \ | |
--since=${{ env.GIT_REF }} \ | |
--formatter-enabled=true \ | |
--linter-enabled=false \ | |
--organize-imports-enabled=true \ | |
--vcs-enabled=true \ | |
--vcs-use-ignore-file=true \ | |
--no-errors-on-unmatched \ | |
--diagnostic-level=info \ | |
--log-level=warn \ | |
. | |
- name: 🚦 Git Auto Commit Lint fixes (with Biome) | |
uses: stefanzweifel/git-auto-commit-action@v5.0.1 | |
with: | |
commit_message: "chore: lint code with Biome [skip ci]" | |
- name: 🧩 Install dependencies | |
uses: ./.github/actions/setup | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: 🔍 Typecheck code | |
continue-on-error: true | |
run: pnpm typecheck |