Skip to content

Commit 92a07fe

Browse files
author
IvanZosimov
committed
Fix review points
1 parent 217387c commit 92a07fe

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-test.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-test
1+
name: Basic validation
22

33
on:
44
pull_request:
@@ -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-node.ts && ncc build -o dist/cache-save src/cache-save.ts",
99
"format": "prettier --write **/*.ts",
1010
"format-check": "prettier --check **/*.ts",
11-
"lint": "",
11+
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
1212
"test": "jest --coverage",
1313
"pre-checkin": "npm run format && npm run build && npm test"
1414
},

0 commit comments

Comments
 (0)