Skip to content

chore: remove ~/.bun/bin in PATH env #82

chore: remove ~/.bun/bin in PATH env

chore: remove ~/.bun/bin in PATH env #82

Workflow file for this run

name: shellcheck
on: [push]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install shellcheck
run: sudo apt update && sudo apt install -y shellcheck
- name: Run shellcheck
run: |
cd "$GITHUB_WORKSPACE" || exit 1
find . -name \*.sh -exec shellcheck {} +
find . -name \*.bashrc -exec shellcheck {} +
find . -name \*.bash_profile -exec shellcheck {} +