Skip to content

Commit

Permalink
Install ahoy in GHA runner,
Browse files Browse the repository at this point in the history
  • Loading branch information
tannguyen04 committed May 7, 2024
1 parent d35ab22 commit cfdda1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/scaffold-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: Setup kcov
run: wget https://github.com/SimonKagstrom/kcov/releases/download/v42/kcov-amd64.tar.gz && tar -xf kcov-amd64.tar.gz && sudo mv ./usr/local/bin/kcov /usr/local/bin/kcov && kcov --version

- name: Setup Ahoy v2.1.1
run: os=$(uname -s | tr [:upper:] [:lower:]) && architecture=$(case $(uname -m) in x86_64 | amd64) echo "amd64" ;; aarch64 | arm64 | armv8) echo "arm64" ;; *) echo "amd64" ;; esac) && sudo wget -q https://github.com/ahoy-cli/ahoy/releases/download/v2.1.1/ahoy-bin-$os-$architecture -O /usr/local/bin/ahoy && sudo chown $USER /usr/local/bin/ahoy && chmod +x /usr/local/bin/ahoy

Check failure on line 38 in .github/workflows/scaffold-test.yml

View workflow job for this annotation

GitHub Actions / scaffold-test-actions

38:256 [line-length] line too long (384 > 255 characters)

- name: Install dependencies
run: npm ci
working-directory: .scaffold/tests
Expand Down

0 comments on commit cfdda1f

Please sign in to comment.