Skip to content

build(deps): bump inquirer from 13.3.0 to 13.3.2 #75

build(deps): bump inquirer from 13.3.0 to 13.3.2

build(deps): bump inquirer from 13.3.0 to 13.3.2 #75

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-test:
name: πŸ—οΈ Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: πŸ“₯ Checkout code
uses: actions/checkout@v6
- name: πŸ”§ Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: πŸ“¦ Install dependencies
run: npm ci
- name: πŸ” Type check
run: npm run type-check
- name: πŸ” Lint
run: npm run lint
- name: πŸ—οΈ Build
run: npm run build
- name: πŸ§ͺ Test
run: npm test
- name: πŸ“Š Test coverage
run: npm run test:coverage
- name: πŸ“€ Upload coverage reports
uses: codecov/codecov-action@v5
if: matrix.node-version == '20.x'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/lcov.info
fail_ci_if_error: false