11 lines
241 B
YAML
11 lines
241 B
YAML
services:
|
|
test:
|
|
image: node:22-alpine
|
|
working_dir: /app/frontend
|
|
volumes:
|
|
- .:/app
|
|
- node_modules_test:/app/frontend/node_modules
|
|
command: sh -c "npm install --silent && npm test"
|
|
|
|
volumes:
|
|
node_modules_test:
|