BREAKING CHANGE: make lucide-react peer dependency and don't export unnecessary files #16
Workflow file for this run
This file contains hidden or 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: Check code formatting, lint and run unit tests | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
format_and_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run Prettier | |
run: npm run prettier | |
- name: Run Unit Tests | |
run: npm run test | |
- name: Run Build | |
run: npm run build |