Dev test #61
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
# .github/workflows/library-lint-check.yml | |
name: Lint and Prettier Check for Library | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
library-lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: npm install | |
- name: Run Lint for Library | |
run: npm run lint:library | |
- name: Run Prettier Check for Library | |
run: npm run prettier:check-library |