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 ee10367 commit 4b91f26
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions .circleci/config.yml
Expand Up @@ -61,20 +61,39 @@ jobs:
- run:
name: Running tests with coverage
command: npm run ci:coverage
windows-v10-latest:
executor:
name: win/default
shell: bash.exe
steps:
- checkout
- run:
name: Select Node 10
command: nvm use 10
- run:
name: Installing Dependencies
command: npm ci
- run:
name: Running tests
command: npm test
windows-v14-latest:
executor:
name: win/default
shell: bash.exe
steps:
- run:
name: Configure git line breaks
command: git config --global core.autocrlf false
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install deps again
name: Select Node 14
command: nvm use 14
- run:
name: Installing Dependencies
command: npm ci
- run:
name: Running tests
command: npm run test
command: npm test

workflows:
version: 2
Expand Down

0 comments on commit 4b91f26

Please sign in to comment.