Skip to content

Bump @types/node from 18.19.59 to 22.8.1 #141

Bump @types/node from 18.19.59 to 22.8.1

Bump @types/node from 18.19.59 to 22.8.1 #141

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: [ '21', '20', '18']
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install
run: npm install
- name: test
run: npm test
- name: coverage
run: npm run test-cov-lcov
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
path-to-lcov: coverage.info
github-token: ${{ secrets.github_token }}
flag-name: npm run test-cov-lcov
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
path-to-lcov: coverage.info
github-token: ${{ secrets.github_token }}
parallel-finished: true