Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

fix(deps): update all non-major dependencies #72

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #72

name: Test Pepr Module
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: pepr-module-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup NodeJS
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: 20
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: Install Node dependencies
run: npm ci
- name: Run unit tests for Pepr module
run: make test-module