Update dependencies and general improvements in packages #507
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: Lucide Vue checks | |
on: | |
pull_request: | |
paths: | |
- packages/lucide-vue/** | |
- tools/build-icons/** | |
- tools/rollup-plugins/** | |
- pnpm-lock.yaml | |
jobs: | |
lucide-vue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/[email protected] | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm --filter lucide-vue build | |
- name: Test | |
run: pnpm --filter lucide-vue test |