Skip to content

build(deps-dev): bump the development-dependencies group across 1 directory with 3 updates #506

build(deps-dev): bump the development-dependencies group across 1 directory with 3 updates

build(deps-dev): bump the development-dependencies group across 1 directory with 3 updates #506

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
env:
FORCE_COLOR: 2
UPLOAD_NODE_VERSION: 24
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
- run: npm pack
- name: Upload package artifact
if: matrix.node-version == env.UPLOAD_NODE_VERSION
uses: actions/upload-artifact@v7
with:
name: npm-pack
path: detective-postcss-*.tgz