Skip to content

Bump actions/checkout from 6.0.3 to 7.0.1 #725

Bump actions/checkout from 6.0.3 to 7.0.1

Bump actions/checkout from 6.0.3 to 7.0.1 #725

Workflow file for this run

name: Build & test
on:
push:
branches:
- master
pull_request:
permissions: read-all
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [^22.12, ^24, ^26]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # 7.0.1
- uses: ./.github/actions/node-bootstrap
with:
node-version: ${{ matrix.node-version }}
- name: Lint and run tests
run: npm run test
- name: Pack
run: npm pack
- name: Check package exports
run: npx publint
- name: Check dependencies exports
run: npx publint deps --prod