Skip to content

Bump uuid from 10.0.0 to 14.0.0 #1971

Bump uuid from 10.0.0 to 14.0.0

Bump uuid from 10.0.0 to 14.0.0 #1971

name: Test Dependabot PRs
on:
push:
branches:
- 'dependabot/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Cache node_modules
uses: actions/cache@v5
id: node_modules
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- uses: actions/setup-node@v6.4.0
if: steps.node_modules.outputs.cache-hit != 'true'
with:
node-version: "20.x"
cache: "npm"
registry-url: "https://npm.pkg.github.com"
- run: npm ci --ignore-scripts
if: steps.node_modules.outputs.cache-hit != 'true'
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- run: npm test