Skip to content

Commit

Permalink
build(repo): remove workaround for lerna arch-specific issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Apr 4, 2024
1 parent 49f34ea commit a34cb39
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
with:
node-version: "18" # Specify a Node.js version

- name: Remove package-lock.json # This is to work around https://github.com/npm/cli/issues/4828
run: rm -f package-lock.json

- name: Install dependencies
run: npm install

Expand All @@ -40,7 +37,7 @@ jobs:
git checkout ${{ github.head_ref }}
# Add, commit, and push changes, ignoring package-lock.json
git diff --name-only | grep -v 'package-lock.json' | xargs git add
git diff --name-only | xargs git add
git diff --staged --quiet || git commit -m "Apply Prettier formatting"
git push origin ${{ github.head_ref }}
env:
Expand Down

0 comments on commit a34cb39

Please sign in to comment.