Skip to content

Commit 9acc3d3

Browse files
author
IvanZosimov
committed
Fix review points
1 parent 5b3907e commit 9acc3d3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build-test
1+
name: Basic validation
22

33
on:
44
push:
@@ -11,6 +11,6 @@ on:
1111
- '**.md'
1212

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

.github/workflows/check-dist.yml

+1-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ on:
99
- main
1010

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "tsc && ncc build -o dist/setup src/setup-go.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)