Skip to content

ci(action): update actions/checkout action to v7 #1905

ci(action): update actions/checkout action to v7

ci(action): update actions/checkout action to v7 #1905

Workflow file for this run

name: Test
"on":
push:
branches:
- master
- renovate/**
pull_request:
types:
- opened
- synchronize
jobs:
test_matrix:
strategy:
matrix:
node-version:
- 20.8.1 # minimum supported Node version
- 20
- 21
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint
- run: npx lockfile-lint --path package-lock.json