Skip to content

Commit

Permalink
Test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sgravrock committed May 19, 2022
1 parent 617fd11 commit 0c7db31
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

version: 2.1

orbs:
win: circleci/windows@4.1.1
node: circleci/node@5.0.2

executors:
node18:
docker:
Expand Down Expand Up @@ -52,6 +56,22 @@ jobs:
- run:
name: Run tests
command: npm test
test_win:
executor:
name: win/default
shell: bash.exe
steps:
- checkout
- node/install
- run:
name: Report Node and NPM versions
command: echo "Using Node $(node --version) and NPM $(npm --version)"
- run:
name: Install dependencies
command: npm install
- run:
name: Run tests
command: npm test

workflows:
version: 2
Expand All @@ -68,6 +88,7 @@ workflows:
- node14_7
- node12_latest
- node12_17 # first with dynamic import() of commonjs modules
- test_win
cron:
<<: *push_workflow
triggers:
Expand Down

0 comments on commit 0c7db31

Please sign in to comment.