Skip to content

Commit

Permalink
Add tool packages
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-trunk-io committed Aug 8, 2023
1 parent 8eef5d6 commit 75ee4d4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/actions/tool_tests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,23 @@ runs:
shell: bash
working-directory: ${{ inputs.path }}

- name: Install packages
run: |
case "$RUNNER_OS" in
Linux)
sudo apt-get update
sudo apt-get -y install libperl-critic-perl perltidy zlib1g-dev pkg-config libfuse-dev
;;
macOS)
brew tap macos-fuse-t/homebrew-cask
brew install fuse-t
brew install cpm
cpm install -g --no-test --color Perl::Critic Perl::Tidy
brew unlink perl && brew link perl
;;
esac
shell: bash

- name: Install dependencies
run: npm ci
shell: bash
Expand Down

0 comments on commit 75ee4d4

Please sign in to comment.