Skip to content

Commit

Permalink
ci: check peer-deps
Browse files Browse the repository at this point in the history
Run script in CI
  • Loading branch information
colbr committed Jun 18, 2024
1 parent 8eddfb2 commit 5bea0d2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check-peer-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: check-peer-deps
on:
pull_request:
paths:
- 'package.json'
- 'package-lock.json'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Common Setup
uses: ./.github/actions/common

- name: Run peer-deps
run: npm run peer-deps

0 comments on commit 5bea0d2

Please sign in to comment.