Skip to content

chore(deps): update dependency inquirer to v12.9.6 #26

chore(deps): update dependency inquirer to v12.9.6

chore(deps): update dependency inquirer to v12.9.6 #26

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags:
- '!**'
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
if [ -f package-lock.json ]; then
echo "package-lock.json found, using 'npm ci'"
npm ci
else
echo "package-lock.json not found, using 'npm install'"
npm install
fi
- name: Run test
run: npm test
- name: Run build
run: npm run build