Commit 0c95e8f9 authored by hyeryung's avatar hyeryung

remove css lint

parent 659c3375
Pipeline #18812 failed with stages
in 1 minute and 53 seconds
image: node:10.14.2-stretch image: node:10.14.2-stretch
stages: [setup, deploy] stages: [setup, verify, deploy]
install: install:
stage: setup stage: setup
cache: cache:
...@@ -8,16 +8,22 @@ install: ...@@ -8,16 +8,22 @@ install:
script: script:
- &npm_install - &npm_install
npm install --quiet --no-progress --cache=.cache/npm npm install --quiet --no-progress --cache=.cache/npm
bundle-stable: lint:
stage: deploy stage: verify
only:
- master@test/antora-ui-default-test
cache: &pull_cache cache: &pull_cache
policy: pull policy: pull
paths: paths:
- .cache/npm - .cache/npm
script: script:
- *npm_install - *npm_install
- node_modules/.bin/gulp lint
bundle-stable:
stage: deploy
only:
- master@test/antora-ui-default-test
cache: *pull_cache
script:
- *npm_install
- node_modules/.bin/gulp bundle - node_modules/.bin/gulp bundle
artifacts: artifacts:
paths: paths:
......
...@@ -27,11 +27,11 @@ const cleanTask = createTask({ ...@@ -27,11 +27,11 @@ const cleanTask = createTask({
call: task.remove(['build', 'public']), call: task.remove(['build', 'public']),
}) })
const lintCssTask = createTask({ // const lintCssTask = createTask({
name: 'lint:css', // name: 'lint:css',
desc: 'Lint the CSS source files using stylelint (standard config)', // desc: 'Lint the CSS source files using stylelint (standard config)',
call: task.lintCss(glob.css), // call: task.lintCss(glob.css),
}) // })
const lintJsTask = createTask({ const lintJsTask = createTask({
name: 'lint:js', name: 'lint:js',
...@@ -42,7 +42,7 @@ const lintJsTask = createTask({ ...@@ -42,7 +42,7 @@ const lintJsTask = createTask({
const lintTask = createTask({ const lintTask = createTask({
name: 'lint', name: 'lint',
desc: 'Lint the CSS and JavaScript source files', desc: 'Lint the CSS and JavaScript source files',
call: parallel(lintCssTask, lintJsTask), call: lintJsTask,
}) })
const formatTask = createTask({ const formatTask = createTask({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment