Skip to content

chore: remove unreferenced devDeps #44

chore: remove unreferenced devDeps

chore: remove unreferenced devDeps #44

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 19.x]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: powershell
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
# Checkout the npm/cli repo
- uses: actions/checkout@v3
# Installs the specific version of Node.js
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
# Run the installer script
- name: Install dependencies
run: npm ci
# Run the tests
- name: Run Tap tests
run: npm test -- -t0 -c