Skip to content

Commit

Permalink
Try to add a windows executor
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Nov 30, 2020
1 parent 90acea4 commit ee10367
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
win: circleci/windows@2.2.0
win: circleci/windows@2.4.0

jobs:
analysis:
Expand Down Expand Up @@ -62,11 +62,16 @@ jobs:
name: Running tests with coverage
command: npm run ci:coverage
windows-v14-latest:
executor: win/default
executor:
name: win/default
shell: bash.exe
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install deps again
command: npm ci
- run:
name: Running tests
command: npm run test
Expand Down

0 comments on commit ee10367

Please sign in to comment.