]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
ci: move to github actions / remove circleci config
authorEvan You <yyx990803@gmail.com>
Fri, 7 May 2021 14:00:12 +0000 (10:00 -0400)
committerEvan You <yyx990803@gmail.com>
Fri, 7 May 2021 14:00:12 +0000 (10:00 -0400)
.circleci/config.yml [deleted file]
.github/workflows/ci.yml

diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644 (file)
index 3de5c2e..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-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
index 6afc35da294836c78941a2d44af5823f600e9bdc..47dc9916c6bd695517fa88b272c2370792b5e355 100644 (file)
@@ -1,4 +1,4 @@
-name: 'test'
+name: 'ci'
 on:
   push:
     branches: