mirror of
https://github.com/djhackersdev/minime.git
synced 2026-03-21 17:54:13 -05:00
17 lines
168 B
YAML
17 lines
168 B
YAML
image: node:12-buster
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
stages:
|
|
- build
|
|
|
|
do_build:
|
|
stage: build
|
|
script:
|
|
- npm install
|
|
- npm run build
|
|
- npm test
|
|
|