Skip to content

Bump inquirer from 8.2.5 to 9.2.22 #1742

Bump inquirer from 8.2.5 to 9.2.22

Bump inquirer from 8.2.5 to 9.2.22 #1742

Workflow file for this run

on:
pull_request:
branches:
- main
env:
CI: true
jobs:
run_npm_test:
strategy:
matrix:
# Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
os: [ubuntu-20.04]
node-version: [20.x, 18.x, 16.x]
runs-on: ${{ matrix.os }}
name: Run tests on all PRs to 'main'
steps:
# Setup
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm test