Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Resort Management System
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Resort Assistant
Resort Management System
Merge requests
!4
Resolve "배포 파이프라인에 vue.js 앱 빌드 job 필요"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "배포 파이프라인에 vue.js 앱 빌드 job 필요"
4-vue-js-job
into
main
Overview
0
Commits
10
Pipelines
4
Changes
15
Merged
Bell
requested to merge
4-vue-js-job
into
main
1 year ago
Overview
0
Commits
10
Pipelines
4
Changes
15
Expand
작업 내용
CI 파이프라인 내 빌드 잡 수정
개발환경 설정
배경
세부 내용 및 스크린샷
리뷰어
희망 리뷰 완료일
체크리스트
연관 이슈
Closes
#4 (closed)
Edited
1 year ago
by
Bell
0
0
Merge request reports
Compare
main
version 3
abcd2c76
1 year ago
version 2
b2e0aece
1 year ago
version 1
62a6ebd4
1 year ago
main (base)
and
latest version
latest version
b8907385
10 commits,
1 year ago
version 3
abcd2c76
9 commits,
1 year ago
version 2
b2e0aece
8 commits,
1 year ago
version 1
62a6ebd4
6 commits,
1 year ago
15 files
+
421
−
1266
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/jobs/templates/node.gitlab-ci.yaml
0 → 100644
+
25
−
0
Options
# node 기본 구성
.node
:
image
:
${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/node:${NODE_VERSION}
# Offline mirror 를 구성하여 다운로드 받을 때 네트워크를 타지 않음
.node_yarn_cache
:
extends
:
-
.node
variables
:
YARN_CACHE_DIR
:
.yarn-cache
YARN_NODE_ENV
:
development
before_script
:
-
cd view
-
echo 'yarn-offline-mirror "${YARN_CACHE_DIR}"' >> .yarnrc
-
echo 'yarn-offline-mirror-pruning
true
' >> .yarnrc
-
NODE_ENV=${YARN_NODE_ENV} yarn install --frozen-lockfile --no-progress
cache
:
-
key
:
files
:
-
yarn.lock
paths
:
-
${CI_PROJECT_DIR}/${YARN_CACHE_DIR}/
-
key
:
$CI_COMMIT_REF_SLUG
paths
:
-
node_modules/
Loading