Managed auth & more logging (#93) #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "π Dependency mismatch check" | |
on: | |
push: | |
branches: | |
- "main" | |
- "dev" | |
paths: | |
- "apps/**/package.json" | |
- "packages/**/package.json" | |
- ".github/workflows/dependency-check.yml" | |
jobs: | |
deploy: | |
name: "π Dependency mismatch check" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 9.7.1 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install packages | |
run: pnpm --filter=@kontestis/scripts... install | |
- name: Check mismatched dependencies | |
run: pnpm --filter=@kontestis/scripts exec-script dependency-check |