Skip to content

Commit 0117ee1

Browse files
committed
Misc updates
1 parent 4c011da commit 0117ee1

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ARG VARIANT="18-bullseye"
55
FROM 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

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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:

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.PHONY: lint test
2+
3+
lint:
4+
shellcheck *.bash
5+
6+
test:
7+
# bash ./test/test.bash

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)