Skip to content

Bump the actions-updates group across 1 directory with 3 updates #693

Bump the actions-updates group across 1 directory with 3 updates

Bump the actions-updates group across 1 directory with 3 updates #693

Workflow file for this run

name: Build and Test
on: [push, pull_request]
# Declare default permissions as read only.
permissions: read-all
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: npm
- name: Node & Npm Version
run: |
node -v
npm -v
- name: Verify lockfile is up to date
run: |
npm install --package-lock-only --no-audit --no-fund
git diff --exit-code || (echo "Lockfile not up to date. Run 'npm i' and commit the changes." && exit 1)
- name: Install 🔧
run: npm ci --no-audit --no-fund
- name: Lint 🔍
run: npm run lint
- name: Test 🚨
run: npm run test