Commit 99217949 authored by coconux's avatar coconux
Browse files

add documentation for gulp

parent c8bd7524
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -23,6 +23,26 @@ It exposes `node_modules` as cache to other jobs of your pipeline. It allows you
1. Well done, your job is ready to work ! 😀


### Example of .gitlab-ci.yml file

If you want to [change the default stage](/use-the-hub/#change-the-default-stage-of-job), or [customize your job](/use-the-hub/#global) have a look ont the example below 👇🏽

```yaml
stages:
  - prepare-frontend

include:
  - remote: 'https://jobs.r2devops.io/gulp.yml'

gulp:
  variables:
    PROJECT_ROOT: "frontend/"
    GULP_TASKS: "generate-fonts; minify-css; minify-js; "
    GULPFILE_PATH: "config/gulpfile.js"
```



## Job details

!!! info