Skip to content

Commit 5bbbb02

Browse files
author
IvanZosimov
committed
Fix review points
1 parent 007465e commit 5bbbb02

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yml renamed to .github/workflows/basic-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Action
1+
name: Basic validation
22

33
on:
44
push:
@@ -12,6 +12,6 @@ on:
1212
- '**.md'
1313

1414
jobs:
15-
call-basic-validation: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/basic-validation.yml
15+
call-basic-validation:
1616
name: Basic validation
1717
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ on:
1212
workflow_dispatch:
1313

1414
jobs:
15-
call-check-dist: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/check-dist.yml
15+
call-check-dist:
1616
name: Check dist/
1717
uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ on:
99
- cron: '0 3 * * 0'
1010

1111
jobs:
12-
call-codeQL-analysis: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/codeql-analysis.yml
12+
call-codeQL-analysis:
1313
name: CodeQL analysis
1414
uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main

.github/workflows/licensed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13-
call-licensed: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/licensed.yml
13+
call-licensed:
1414
name: Licensed
1515
uses: actions/reusable-workflows/.github/workflows/licensed.yml@main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "ncc build -o dist/setup src/setup-java.ts && ncc build -o dist/cleanup src/cleanup-java.ts",
99
"format": "prettier --write \"{,!(node_modules)/**/}*.ts\"",
1010
"format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"",
11-
"lint": "",
11+
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
1212
"prerelease": "npm run-script build",
1313
"release": "git add -f dist/setup/index.js dist/cleanup/index.js",
1414
"test": "jest"

0 commit comments

Comments
 (0)