Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created April 7, 2020 06:35
Show Gist options
  • Save Restoration/d405c56080f8d25ce3d95dc3806a326d to your computer and use it in GitHub Desktop.
Save Restoration/d405c56080f8d25ce3d95dc3806a326d to your computer and use it in GitHub Desktop.
.gitlab-ci.yml for npm project
image: node:11.10.1
stages:
- test
run-unit-test:
stage: test
script:
- npm install # Install all dependencies
- npm test # Test
only:
- merge_requests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment