Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/actions/node-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,7 @@ runs:
run: |
yarn config set winLinkType symlinks
if [ "${{ inputs.strict }}" = "true" ]; then
echo "Installing with strict mode"
yarn install --immutable --check-resolutions --refresh-lockfile
echo "Checking peerDeps and constraints"
yarn check:pkgs
echo "Running npm audit"
yarn npm audit --all
else
YARN_ENABLE_HARDENED_MODE=0 yarn install --no-immutable
fi
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ jobs:
- name: Setup
uses: ./.github/actions/node-setup

- name: Check peer dependencies
run: yarn check:peers

- name: Check package consistency
run: yarn constraints

- name: Check package audit
run: yarn npm audit --all

- name: Project Reference Check
run: yarn sync:check

Expand Down
Loading