Skip to content

Commit 79cf745

Browse files
committed
style: split steps by newlines
1 parent a3b9772 commit 79cf745

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.github/workflows/generate-go-app.yml

+5
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,25 @@ jobs:
2121
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
2222
runs-on: ubuntu-20.04
2323
steps:
24+
2425
- name: Clone source code
2526
uses: actions/[email protected] # https://github.com/actions/checkout
2627
with:
2728
# Whether to configure the token or SSH key with the local git config. Default: true
2829
persist-credentials: false
30+
2931
- name: Setup NodeJS
3032
uses: actions/[email protected] # https://github.com/actions/setup-node
3133
with:
3234
node-version: 18
3335
cache: 'npm'
36+
3437
- name: Install project dependencies
3538
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
39+
3640
- name: Generate Golang + Chi application
3741
run: npm run gen-go-example
42+
3843
- name: Check whether all modified files have been committed
3944
run: >-
4045
MODIFIED_FILES="$(git status --short)";

.github/workflows/generate-js-app.yml

+5
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,25 @@ jobs:
2121
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
2222
runs-on: ubuntu-20.04
2323
steps:
24+
2425
- name: Clone source code
2526
uses: actions/[email protected] # https://github.com/actions/checkout
2627
with:
2728
# Whether to configure the token or SSH key with the local git config. Default: true
2829
persist-credentials: false
30+
2931
- name: Setup NodeJS
3032
uses: actions/[email protected] # https://github.com/actions/setup-node
3133
with:
3234
node-version: 18
3335
cache: 'npm'
36+
3437
- name: Install project dependencies
3538
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
39+
3640
- name: Generate JavaScript + Express application
3741
run: npm run gen-js-example
42+
3843
- name: Check whether all modified files have been committed
3944
run: >-
4045
MODIFIED_FILES="$(git status --short)";

.github/workflows/generate-python-app.yml

+5
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,25 @@ jobs:
2121
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
2222
runs-on: ubuntu-20.04
2323
steps:
24+
2425
- name: Clone source code
2526
uses: actions/[email protected] # https://github.com/actions/checkout
2627
with:
2728
# Whether to configure the token or SSH key with the local git config. Default: true
2829
persist-credentials: false
30+
2931
- name: Setup NodeJS
3032
uses: actions/[email protected] # https://github.com/actions/setup-node
3133
with:
3234
node-version: 18
3335
cache: 'npm'
36+
3437
- name: Install project dependencies
3538
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
39+
3640
- name: Generate Python + FastAPI application
3741
run: npm run gen-py-example
42+
3843
- name: Check whether all modified files have been committed
3944
run: >-
4045
MODIFIED_FILES="$(git status --short)";

.github/workflows/generate-ts-app.yml

+5
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,25 @@ jobs:
2121
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
2222
runs-on: ubuntu-20.04
2323
steps:
24+
2425
- name: Clone source code
2526
uses: actions/[email protected] # https://github.com/actions/checkout
2627
with:
2728
# Whether to configure the token or SSH key with the local git config. Default: true
2829
persist-credentials: false
30+
2931
- name: Setup NodeJS
3032
uses: actions/[email protected] # https://github.com/actions/setup-node
3133
with:
3234
node-version: 18
3335
cache: 'npm'
36+
3437
- name: Install project dependencies
3538
run: npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
39+
3640
- name: Generate TypeScript + Express application
3741
run: npm run gen-ts-example
42+
3843
- name: Check whether all modified files have been committed
3944
run: >-
4045
MODIFIED_FILES="$(git status --short)";

0 commit comments

Comments
 (0)