Skip to content
Snippets Groups Projects

Minimal CI to get started

Merged Carles Barrobés requested to merge ci into master
1 file
+ 12
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 12
0
 
stages:
 
- build
 
 
build:
 
stage: build
 
image: node:18
 
script:
 
- npm install -g @angular/cli
 
# - npm install -g @ionic/cli @angular/cli @capacitor/cli
 
- npm install
 
- npm run build
 
- npm run lint
Loading