Skip to content

Don't look for dependents of packages with deleted files if those packages were not fully deleted #2438

Don't look for dependents of packages with deleted files if those packages were not fully deleted

Don't look for dependents of packages with deleted files if those packages were not fully deleted #2438

Workflow file for this run

on:
pull_request:
branches:
- main
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
# Ensure scripts are run with pipefail. See:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
defaults:
run:
shell: bash
jobs:
build_and_test:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- run: npm install -g pnpm
- run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: install
run: pnpm install
- name: lint
run: pnpm lint
- name: build
run: pnpm build
- name: test
run: pnpm test
- name: knip
run: pnpm knip
check-parse-results:
needs: build_and_test
uses: ./.github/workflows/check-parse-results.yml
changesets:
name: changesets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- run: npm install -g pnpm
- run: pnpm install
- name: Check for missing changesets
run: |
PR_CHANGESETS=$(ls .changeset | (grep -v -E 'README\.md|config\.json' || true) | wc -l)
MAIN_CHANGESETS=$(git ls-tree -r origin/main .changeset | (grep -v -E 'README\.md|config\.json' || true) | wc -l)
# If the PR has no changesets, but main has changesets, assume this is PR is a versioning PR and exit
if [[ $PR_CHANGESETS -eq 0 && $MAIN_CHANGESETS -gt 0 ]]; then
echo "This PR is a versioning PR, exiting"
exit 0
fi
git switch -c changesets-temp
git checkout origin/main -- packages/definitions-parser/allowedPackageJsonDependencies.txt
pnpm changeset status --since=origin/main