Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
test_job:
stage: test
script:
- npm install
- npm test
build_job:
stage: build
script:
- echo "Building the project..."
build_job:
tags:
- docker
- high-cpu
test_job:
before_script:
- echo "Préparation des tests..."
script:
- npm test
after_script:
- echo "Nettoyage..."