Skip to content

build(deps-dev): bump shell-quote from 1.7.3 to 1.8.4 #148

build(deps-dev): bump shell-quote from 1.7.3 to 1.8.4

build(deps-dev): bump shell-quote from 1.7.3 to 1.8.4 #148

Workflow file for this run

# This workflow installs dependencies, type-checks, builds, lints, and tests
# the TypeScript CLI across supported Node.js versions.
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- 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 run typecheck
- run: npm run build
- run: npm run lint
- run: npm test
env:
CI: true