Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,17 @@ jobs:
run: npm run lint
- name: Tests
run: npm run test
- name: Run npm pack dry-run
run: npm pack --dry-run
- name: Check if lib directory exists
run: |
if [ ! -d "lib" ]; then
echo "Error: lib directory does not exist"
exit 1
fi
- name: Check if lib directory has files
run: |
if [ -z "$(ls -A lib)" ]; then
echo "Error: lib directory is empty"
exit 1
fi