ci-image-improvements #18

Merged
david merged 12 commits from ci-image-improvements into main 2026-04-01 06:14:26 +00:00
2 changed files with 15 additions and 6 deletions
Showing only changes of commit c611c68822 - Show all commits
+10 -4
View File
@@ -15,8 +15,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
path: /app
- name: Link node_modules from container
run: |
# Create symlink to pre-installed node_modules in container
ln -sf /app/node_modules ./node_modules
- name: Run unit tests
run: npm run test:run
@@ -35,8 +38,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
path: /app
- name: Link node_modules from container
run: |
# Create symlink to pre-installed node_modules in container
ln -sf /app/node_modules ./node_modules
- name: Setup SQLite database
run: |
+5 -2
View File
@@ -17,8 +17,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
path: /app
- name: Link node_modules from container
run: |
# Create symlink to pre-installed node_modules in container
ln -sf /app/node_modules ./node_modules
- name: Run unit tests
run: npm run test:run