Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
circleci windows build (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
jescalan authored Sep 24, 2019
1 parent a60a645 commit edb3d9d
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version: 2
version: 2.1
orbs:
win: circleci/windows@1.0.0
jobs:
build:
linux:
working_directory: ~/repo
docker:
- image: circleci/node:latest
Expand All @@ -16,3 +18,24 @@ jobs:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm test
windows:
executor: win/vs2019
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm test
workflows:
version: 2
build:
jobs:
- linux
- windows

0 comments on commit edb3d9d

Please sign in to comment.