We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19210c2 commit cffcbc5Copy full SHA for cffcbc5
.github/workflows/ci.yml
@@ -28,3 +28,17 @@ jobs:
28
run: npm run lint
29
- name: Tests
30
run: npm run test
31
+ - name: Run npm pack dry-run
32
+ run: npm pack --dry-run
33
+ - name: Check if lib directory exists
34
+ run: |
35
+ if [ ! -d "lib" ]; then
36
+ echo "Error: lib directory does not exist"
37
+ exit 1
38
+ fi
39
+ - name: Check if lib directory has files
40
41
+ if [ -z "$(ls -A lib)" ]; then
42
+ echo "Error: lib directory is empty"
43
44
0 commit comments