Skip to content

chore(deps-dev): Bump the npm-deps group with 2 updates #173

chore(deps-dev): Bump the npm-deps group with 2 updates

chore(deps-dev): Bump the npm-deps group with 2 updates #173

Workflow file for this run

---
name: ci
on:
pull_request:
branches:
- main
paths:
- 'package*.json'
- '**/*.js'
- '**/*.ts'
- '.github/workflows/ci.yml'
permissions: {}
jobs:
validation:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
attestations: write
strategy:
matrix:
node-version: [20.x, 22.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
continue-on-error: true
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
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
with:
subject-path: './dist'