fix(schema-resume): update exports and main entry point #541
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 | |
with: | |
version: latest | |
- name: π Format packages/resume code (with Biome) | |
continue-on-error: false | |
run: | | |
biome check \ | |
--vcs-enabled=true \ | |
--vcs-use-ignore-file=true \ | |
--vcs-root='.' \ | |
--formatter-enabled=true \ | |
--linter-enabled=false \ | |
--organize-imports-enabled=true \ | |
--write packages/resume | |
- name: π Format packages/schema-resume code (with Biome) | |
continue-on-error: false | |
run: | | |
biome check \ | |
--vcs-enabled=true \ | |
--vcs-use-ignore-file=true \ | |
--vcs-root='.' \ | |
--formatter-enabled=true \ | |
--linter-enabled=false \ | |
--organize-imports-enabled=true \ | |
--write packages/schema-resume | |
- name: π¦ Git Auto Commit Lint fixes (with Biome) | |
uses: stefanzweifel/git-auto-commit-action@v5.1.0 | |
with: | |
commit_message: "chore: format code with Biome [skip ci]" |