File tree 1 file changed +10
-19
lines changed
1 file changed +10
-19
lines changed Original file line number Diff line number Diff line change @@ -27,24 +27,15 @@ jobs:
27
27
cache : ' npm'
28
28
- run : npm ci
29
29
- run : npm run build --if-present
30
- - name : Debug
31
- run : find src -name "*.spec.ts" | sort
30
+ - name : Debug repository structure
31
+ run : |
32
+ echo "All .spec.ts files in repository:"
33
+ find . -name "*.spec.ts" | sort
34
+ echo "Directory structure of src/modules:"
35
+ ls -la src/modules || echo "modules directory not found"
36
+ echo "Auth module structure (if exists):"
37
+ ls -la src/modules/auth || echo "auth directory not found"
38
+ echo "Test directory structure (if exists):"
39
+ ls -la src/modules/auth/test || echo "test directory not found"
32
40
- run : npm test
33
41
34
- build :
35
- name : Build
36
- needs : test
37
- runs-on : ubuntu-latest
38
- if : github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
39
-
40
- steps :
41
- - uses : actions/checkout@v3
42
- - name : Use Node.js
43
- uses : actions/setup-node@v3
44
- with :
45
- node-version : ' 18.x'
46
- cache : ' npm'
47
- - name : Install dependencies
48
- run : npm ci
49
- - name : Build
50
- run : npm run build
You can’t perform that action at this time.
0 commit comments