Skip to content

Commit

Permalink
circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Totten committed May 24, 2019
1 parent e8b4b52 commit e9fbb06
Show file tree
Hide file tree
Showing 3 changed files with 582 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#
version: 2
jobs:
build:
docker:
- image: circleci/node:10.2.0

steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm install
- run: npm run vscode:package
- run:
command: |
mkdir extensions
find . -name "*.vsix" -type f -exec cp {} ./extensions \;
- store_artifacts:
path: ./extensions
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
workflows:
version: 2
commit-workflow:
jobs:
- build
Loading

0 comments on commit e9fbb06

Please sign in to comment.