Skip to content

refactor: make hasPowerShell3 async, removing execFileSync #36

refactor: make hasPowerShell3 async, removing execFileSync

refactor: make hasPowerShell3 async, removing execFileSync #36

Workflow file for this run

name: 'Continuous Integration'
on:
push:
pull_request:
jobs:
unit-tests:
name: Unit tests and Coverage (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 12
- 14
- 16
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test:coverage
lint-typecheck:
name: 'Lint and TypeCheck'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- run: npm ci
- run: npm run lint
- run: npm run typecheck