Skip to content

Commit 6376f2e

Browse files
authored
Update Workflows (#7)
1 parent 1b4e1cc commit 6376f2e

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
# run: |
3838
# npm run lint
3939

40-
- name: "Prettier"
40+
- name: "Prettier Check"
4141
if: ${{ !cancelled() }}
4242
run: |
43-
npm run prettier
43+
npm run prettier:check
4444
4545
- name: "Yamllint"
4646
if: ${{ !cancelled() }}

docs/docs/inputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Default: `false`
159159
Variables in this file are exported before running stack deploy.
160160
If you need compose file templating this can also be done in a previous step.
161161

162-
_Compose._ You can also add to the [args](#args) with `--env-file stringArray`.
162+
_Compose._ You can also add to the [args](#args) with `--env-file stringArray` <CB prev />
163163

164164
::: info
165165
**This is NOT** the Docker compose [env_file](https://docs.docker.com/compose/how-tos/environment-variables/set-environment-variables/#use-the-env_file-attribute) directive.

docs/guides/get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _You can also view the [features](features.md) and additional [examples](example
1616

1717
Add the step to an existing workflow or create a new one.
1818

19-
_If creating a [new workflow](https://docs.github.com/en/actions/concepts/workflows-and-actions/workflows#about-workflows), place it in the `.github/workflows` directory._
19+
_If creating a [new workflow](https://docs.github.com/en/actions/concepts/workflows-and-actions/workflows#about-workflows), place it in the `.github/workflows` <CB prev margin="0 8px 0" /> directory._
2020

2121
::: code-group
2222
<<< @/snippets/basic/step.yaml {4,5,10,11 yaml} [Existing Workflow ~vscode-icons:folder-type-github~]

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"scripts": {
3+
"docs": "npm run dev",
34
"dev": "vitepress dev .",
45
"build": "vitepress build .",
56
"preview": "vitepress preview .",
6-
"prettier": "npx prettier --check .",
7+
"prettier:check": "npx prettier --check .",
8+
"prettier:write": "npx prettier --write .",
79
"get-contributors": "npx get-contributors cssnr/stack-deploy-action",
810
"postinstall": "npm run get-contributors"
911
},

0 commit comments

Comments
 (0)