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
stages: [setup, deploy]
stages: [setup, verify, deploy]
install:
stage: setup
cache:
......@@ -8,16 +8,22 @@ install:
script:
- &npm_install
npm install --quiet --no-progress --cache=.cache/npm
bundle-stable:
stage: deploy
only:
- master@test/antora-ui-default-test
lint:
stage: verify
cache: &pull_cache
policy: pull
paths:
- .cache/npm
script:
- *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
artifacts:
paths:
......@@ -37,7 +43,7 @@ bundle-dev:
pages:
stage: deploy
only:
- master@test/antora-ui-default-test
- master@test/antora-ui-default-test
cache: *pull_cache
script:
- *npm_install
......
......@@ -27,11 +27,11 @@ const cleanTask = createTask({
call: task.remove(['build', 'public']),
})
const lintCssTask = createTask({
name: 'lint:css',
desc: 'Lint the CSS source files using stylelint (standard config)',
call: task.lintCss(glob.css),
})
// const lintCssTask = createTask({
// name: 'lint:css',
// desc: 'Lint the CSS source files using stylelint (standard config)',
// call: task.lintCss(glob.css),
// })
const lintJsTask = createTask({
name: 'lint:js',
......@@ -42,7 +42,7 @@ const lintJsTask = createTask({
const lintTask = createTask({
name: 'lint',
desc: 'Lint the CSS and JavaScript source files',
call: parallel(lintCssTask, lintJsTask),
call: lintJsTask,
})
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