Skip to content

Bump execa from 7.1.1 to 7.2.0 #210

Bump execa from 7.1.1 to 7.2.0

Bump execa from 7.1.1 to 7.2.0 #210

Workflow file for this run

name: test
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node_version:
- 16
- 18
- 20
architecture:
- x64
# an extra windows-x86 run:
include:
- os: windows-latest
node_version: 16
architecture: x86
name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.architecture }}
cache: "npm"
- name: Install latest npm
run: npm i -g npm@latest
- name: Clean install dependencies
run: npm ci
- name: Run tests
run: npm test