Skip to content

Bump the non-major group across 1 directory with 7 updates #22

Bump the non-major group across 1 directory with 7 updates

Bump the non-major group across 1 directory with 7 updates #22

Workflow file for this run

name: Test and Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# No permissions are required for this workflow
permissions: {}
jobs:
test:
name: General checks, tests and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Install Puppeteer browser
run: npm run setup
- name: Validate lockfile
run: npm run lint:lockfile
- name: Perform checks and tests
run: npm test