Skip to content

Merge pull request #20 from jameelmoses/patch-1 #42

Merge pull request #20 from jameelmoses/patch-1

Merge pull request #20 from jameelmoses/patch-1 #42

Workflow file for this run

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