File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed
Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ ARG VARIANT="18-bullseye"
55FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
66
77# [Optional] Uncomment this section to install additional OS packages.
8- # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9- # && apt-get -y install --no-install-recommends <your-package-list-here>
8+ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9+ && apt-get -y install --no-install-recommends shellcheck
1010
1111# [Optional] Uncomment if you want to install an additional version of node using nvm
1212# ARG EXTRA_NODE_VERSION=10
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : github-actions
4+ directory : /
5+ schedule :
6+ interval : weekly
Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v3
14- - run : shellcheck *.bash
14+ - run : make lint
1515
1616 test-default :
1717 strategy :
Original file line number Diff line number Diff line change 1+ .PHONY : lint test
2+
3+ lint :
4+ shellcheck * .bash
5+
6+ test :
7+ # bash ./test/test.bash
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ The installed directory will be added to `PATH` environment variable of your wor
1313``` yaml
1414- uses : autifyhq/actions-setup-cli@v2
1515 # Optionally specify the installer script which installs `autify` at `./autify/bin`.
16- # If omitted, the default installer will be used. (Currently stable channel)
16+ # If omitted, the default installer will be used. (Currently beta channel)
1717 shell-installer-url : " https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/beta/install-cicd.bash"
1818
1919# Then, `autify` is available
You can’t perform that action at this time.
0 commit comments