2020-11-07 16:09:08 +08:00
|
|
|
name: 'Tests: shellcheck'
|
2020-11-19 01:49:28 +08:00
|
|
|
|
|
|
|
on: [pull_request, push]
|
|
|
|
|
|
|
|
jobs:
|
2021-04-16 13:34:40 +08:00
|
|
|
shellcheck_matrix:
|
2021-09-10 14:09:45 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2020-11-19 01:49:28 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
2021-09-01 06:28:41 +08:00
|
|
|
fail-fast: false
|
2020-11-19 01:49:28 +08:00
|
|
|
matrix:
|
|
|
|
shell:
|
|
|
|
- bash
|
|
|
|
- sh
|
|
|
|
- dash
|
|
|
|
- ksh
|
|
|
|
file:
|
|
|
|
- nvm.sh
|
|
|
|
include:
|
|
|
|
- shell: bash
|
|
|
|
file: install.sh # only supported on bash
|
|
|
|
- shell: bash
|
|
|
|
file: bash_completion # only needed in bash/zsh
|
|
|
|
- shell: bash
|
|
|
|
file: nvm-exec # only runs in bash
|
|
|
|
|
|
|
|
steps:
|
2021-11-22 23:20:50 +08:00
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@v1
|
|
|
|
with:
|
|
|
|
allowed-endpoints:
|
|
|
|
ghcr.io:443
|
|
|
|
github.com:443
|
|
|
|
pkg-containers.githubusercontent.com:443
|
2020-11-19 01:49:28 +08:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install shellcheck
|
|
|
|
run: brew install shellcheck
|
2021-11-22 23:20:50 +08:00
|
|
|
env:
|
|
|
|
HOMEBREW_NO_ANALYTICS: 1
|
2020-11-19 01:49:28 +08:00
|
|
|
- run: "shellcheck --version"
|
|
|
|
- name: Run shellcheck on ${{ matrix.file }}
|
|
|
|
run: shellcheck -s ${{ matrix.shell }} ${{ matrix.file }}
|
2021-04-16 13:34:40 +08:00
|
|
|
|
|
|
|
shellcheck:
|
2021-09-10 14:09:45 +08:00
|
|
|
permissions:
|
|
|
|
contents: none
|
2021-04-16 13:34:40 +08:00
|
|
|
needs: [shellcheck_matrix]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-11-22 23:20:50 +08:00
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@v1
|
|
|
|
with:
|
|
|
|
egress-policy: block
|
2021-04-16 13:34:40 +08:00
|
|
|
- run: 'echo tests completed'
|