Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SWLab UI for Yang
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Test
SWLab UI for Yang
Commits
0c95e8f9
Commit
0c95e8f9
authored
Apr 11, 2024
by
hyeryung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove css lint
parent
659c3375
Pipeline
#18812
failed with stages
in 1 minute and 53 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
12 deletions
+18
-12
.gitlab-ci.yml
.gitlab-ci.yml
+12
-6
gulpfile.js
gulpfile.js
+6
-6
No files found.
.gitlab-ci.yml
View file @
0c95e8f9
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
...
...
gulpfile.js
View file @
0c95e8f9
...
...
@@ -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
({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment