Merge pull request #20 from jameelmoses/patch-1 #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
node: [ '18', '16', '14' ] | |
name: ${{ matrix.node }} (Windows) | |
steps: | |
- name: Configure git line-breaks | |
run: git config --global core.autocrlf false | |
- name: Checkout Commit | |
uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Run tests | |
run: npm test | |
env: | |
CI: true |