Skip to content

Bump cspell from 8.15.7 to 8.16.0 in the npm-deps group #452

Bump cspell from 8.15.7 to 8.16.0 in the npm-deps group

Bump cspell from 8.15.7 to 8.16.0 in the npm-deps group #452

Workflow file for this run

---
name: ci
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '.github/workflows/codeql.yml'
- './docs/**'
push:
paths-ignore:
- '**.md'
- './docs/**'
workflow_dispatch:
jobs:
validation:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 }}
- name: Install Dependencies
run: npm ci
- name: npm test
run: npm test
- name: Verify dist is up to date
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
id: diff