Fix review points

This commit is contained in:
IvanZosimov
2022-12-20 16:53:03 +01:00
parent ce7f13552d
commit 55e1958307
6 changed files with 7 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
name: Build & Test
name: Basic validation
on:
pull_request:
@@ -12,6 +12,6 @@ on:
- '**.md'
jobs:
call-basic-validation: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/basic-validation.yml
call-basic-validation:
name: Basic validation
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main

View File

@@ -12,6 +12,6 @@ on:
workflow_dispatch:
jobs:
call-check-dist: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/check-dist.yml
call-check-dist:
name: Check dist/
uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main

View File

@@ -9,6 +9,6 @@ on:
- cron: '0 3 * * 0'
jobs:
call-codeQL-analysis: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/codeql-analysis.yml
call-codeQL-analysis:
name: CodeQL analysis
uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main

View File

@@ -10,6 +10,6 @@ on:
workflow_dispatch:
jobs:
call-licensed: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/licensed.yml
call-licensed:
name: Licensed
uses: actions/reusable-workflows/.github/workflows/licensed.yml@main

View File

@@ -1,4 +1,5 @@
name: Release new action version
on:
release:
types: [released]

View File

@@ -7,7 +7,7 @@
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "",
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
"test": "jest"
},
"repository": {