Add actionlint to testing pipelines (#1555)

* add actionlint for github actions to testing suite

* add quotes around vars per shellcheck

* change expression per shellcheck

* put more quotes around vars per shellcheck

* put quotes around entire string

* use find instead of ls to better handle non-alphanumberic filenames

* update release workflow input types to have actual typese and fix typo
This commit is contained in:
Jonathan Wren 2022-08-21 13:59:45 -07:00 committed by GitHub
parent fd981216da
commit 803b3956fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 78 additions and 22 deletions

View file

@ -43,7 +43,7 @@ jobs:
uses: actions/setup-node@main
- name: Capture full Python version in env
run: echo "PYTHON_FULL_VERSION=$(python --version)" >> $GITHUB_ENV
run: echo "PYTHON_FULL_VERSION=$(python --version)" >> "$GITHUB_ENV"
- name: poetry cache
uses: actions/cache@v2
@ -63,7 +63,7 @@ jobs:
poetry config --local virtualenvs.in-project true
poetry install --no-root --remove-untracked
npm install
echo "node_modules/.bin" >> $GITHUB_PATH
echo "node_modules/.bin" >> "$GITHUB_PATH"
- name: Start docs server
run: poetry run poe docs-run &