Skip to content

Commit

Permalink
fix(package): Removed stupid step in commit linting.
Browse files Browse the repository at this point in the history
It is not necessary to install ``sudo`` in the pipeline.
This is required by ``gh act``, which is a huge pain in the ass.
  • Loading branch information
acederberg committed Aug 16, 2024
1 parent 0b770f4 commit bb2f063
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/commit_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:

- name: Install required dependencies
run: |
apt update
apt install -y sudo
sudo apt install -y git curl
sudo apt update && sudo apt install -y git curl
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo DEBIAN_FRONTEND=noninteractive apt install -y nodejs
npm install conventional-changelog-conventionalcommits
npm install commitlint@latest @commitlint/config-conventional
Expand Down

0 comments on commit bb2f063

Please sign in to comment.