Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vue.js
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
ExcellentOSS
vue.js
Commits
aef70de1
Commit
aef70de1
authored
4 years ago
by
Evan You
Browse files
Options
Downloads
Patches
Plain Diff
ci: move to github actions / remove circleci config
parent
372f152d
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.circleci/config.yml
+0
-52
0 additions, 52 deletions
.circleci/config.yml
.github/workflows/ci.yml
+1
-1
1 addition, 1 deletion
.github/workflows/ci.yml
with
1 addition
and
53 deletions
.circleci/config.yml
deleted
100644 → 0
+
0
−
52
View file @
372f152d
version
:
2
defaults
:
&defaults
docker
:
-
image
:
vuejs/ci
step_restore_cache
:
&restore_cache
restore_cache
:
keys
:
-
v1-dependencies-{{ checksum "yarn.lock" }}-1
-
v1-dependencies-
step_install_deps
:
&install_deps
run
:
name
:
Install Dependencies
command
:
yarn --frozen-lockfile
step_save_cache
:
&save_cache
save_cache
:
paths
:
-
node_modules
-
packages/compiler-core/node_modules
-
packages/compiler-sfc/node_modules
-
packages/vue/node_modules
-
~/.cache/yarn
key
:
v1-dependencies-{{ checksum "yarn.lock" }}-1
jobs
:
test
:
<<
:
*defaults
steps
:
-
checkout
-
*restore_cache
-
*install_deps
-
*save_cache
-
run
:
yarn test --ci
test-dts
:
<<
:
*defaults
steps
:
-
checkout
-
*restore_cache
-
*install_deps
-
*save_cache
-
run
:
yarn test-dts
workflows
:
version
:
2
ci
:
jobs
:
-
test
-
test-dts
This diff is collapsed.
Click to expand it.
.github/workflows/ci.yml
+
1
−
1
View file @
aef70de1
name
:
'
test
'
name
:
'
ci
'
on
:
push
:
branches
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment