Skip to content

Bump execa from 8.0.1 to 9.1.0 #180

Bump execa from 8.0.1 to 9.1.0

Bump execa from 8.0.1 to 9.1.0 #180

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Installation
run: npm ci
- name: Test
run: |
npm test
npm run-script coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}