Skip to content

Commit

Permalink
Fix review points
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanZosimov committed Dec 20, 2022
1 parent 217387c commit 92a07fe
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
@@ -1,4 +1,4 @@
name: build-test
name: Basic validation

on:
pull_request:
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/licensed.yml
Expand Up @@ -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
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,7 +8,7 @@
"build": "ncc build -o dist/setup src/setup-node.ts && ncc build -o dist/cache-save src/cache-save.ts",
"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 --coverage",
"pre-checkin": "npm run format && npm run build && npm test"
},
Expand Down

1 comment on commit 92a07fe

@rairly750
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nn

Please sign in to comment.