gitlab-ci configuration #648

Closed
opened 2025-08-09 17:17:06 +00:00 by fergalmoran · 0 comments
Owner

Originally created by @JonathanLoscalzo on 6/21/2017

This is my gilab-ci.yml config:

image: microsoft/dotnet:2.0-sdk
services:

  • node:8.1
    stages:
  • build
    before_script:
  • 'cd webapp'
  • 'npm install'
  • 'cd ../'
  • 'dotnet restore'
    build:
    stage: build
    script:
  • 'dotnet build'
    only:
  • development

The problem is that dotnet:2.0-sdk image doesn't have node, but installing node as a service (like postgres service), not run...

anybody have to run a javascript services project on GitLab?
thanks!

*Originally created by @JonathanLoscalzo on 6/21/2017* This is my gilab-ci.yml config: > image: microsoft/dotnet:2.0-sdk > services: > - node:8.1 > stages: > - build > before_script: > - 'cd webapp' > - 'npm install' > - 'cd ../' > - 'dotnet restore' > build: > stage: build > script: > - 'dotnet build' > only: > - development The problem is that dotnet:2.0-sdk image doesn't have node, but installing node as a service (like postgres service), not run... anybody have to run a javascript services project on GitLab? thanks!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/JavaScriptServices#648
No description provided.