Skip to content

fix: using absolute paths for tsc.cmd on Windows #117

fix: using absolute paths for tsc.cmd on Windows

fix: using absolute paths for tsc.cmd on Windows #117

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
timeout-minutes: 60
strategy:
matrix:
include:
- os: ubuntu-latest
node-version: 16
- os: ubuntu-latest
node-version: 20
- os: windows-latest
node-version: 20
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g [email protected]
- run: npm install && npm install codecov
- run: npm run cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3