Skip to content

fix(Windows): adapt for Node.js breaking change #347

fix(Windows): adapt for Node.js breaking change

fix(Windows): adapt for Node.js breaking change #347

Workflow file for this run

name: '☔️'
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
timeout-minutes: 5
name: Coverage
steps:
- name: ➕ Actions - Checkout
uses: actions/checkout@v4
- name: ➕ Actions - Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '21.x'
- name: ➕ Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-linux-${{ hashFiles('package-lock.json') }}
restore-keys: npm-linux-
- name: 📦 Installing Dependencies
run: npm ci
- name: 🧪 Checking for Coverage
run: npm run test:c8
- name: ☔️ Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}