From 772df99bfd1bcffba7609792d8bf23710d636daf Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 16:56:01 -0600 Subject: [PATCH 01/25] first pass - minor tweaks and status badges --- .gitattributes | 2 +- CODEOWNERS => .github/CODEOWNERS | 2 +- .prettierignore | 2 +- README.md | 5 ++--- 4 files changed, 5 insertions(+), 6 deletions(-) rename CODEOWNERS => .github/CODEOWNERS (81%) diff --git a/.gitattributes b/.gitattributes index 2e2c7b2..af30937 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -dist/** -diff linguist-generated=true \ No newline at end of file +dist/** -diff linguist-generated=true diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 81% rename from CODEOWNERS rename to .github/CODEOWNERS index 6ac23c1..a9802d7 100644 --- a/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,4 @@ # Repository CODEOWNERS * @actions/actions-runtime -* @ncalteen \ No newline at end of file +* @ncalteen diff --git a/.prettierignore b/.prettierignore index 64f046d..2d0c064 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,3 @@ dist/ node_modules/ -coverage/ \ No newline at end of file +coverage/ diff --git a/README.md b/README.md index 8aa27aa..af192f5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -# Create a JavaScript Action Using TypeScript +# Create a GitHub Action Using TypeScript -[![GitHub Super-Linter](https://github.com/actions/typescript-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter) -![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) +[![GitHub Super-Linter](https://github.com/actions/typescript-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter) ![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) [![Check dist/](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml) [![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) Use this template to bootstrap the creation of a TypeScript action. :rocket: From c0f12045757b1ba9147a815dc184853ed2224057 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:01:53 -0600 Subject: [PATCH 02/25] lint --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index af192f5..fcbe0f7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # Create a GitHub Action Using TypeScript -[![GitHub Super-Linter](https://github.com/actions/typescript-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter) ![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) [![Check dist/](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml) [![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) +[![GitHub Super-Linter](https://github.com/actions/typescript-action/actions/workflows/linter.yml/badge.svg)](https://github.com/super-linter/super-linter) +![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) +[![Check dist/](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml) +[![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) Use this template to bootstrap the creation of a TypeScript action. :rocket: From c9c990c874bd7bea66c6f0dfe2196cad238a40ed Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:07:09 -0600 Subject: [PATCH 03/25] use a .node-version file --- .github/workflows/check-dist.yml | 13 ++++--------- .github/workflows/ci.yml | 2 +- .github/workflows/linter.yml | 2 +- .node-version | 1 + README.md | 8 ++++++-- 5 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 .node-version diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 4d7f663..444f1a9 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -12,22 +12,17 @@ on: push: branches: - main - paths-ignore: - - '**.md' pull_request: - paths-ignore: - - '**.md' workflow_dispatch: +permissions: + contents: read + jobs: check-dist: name: Check dist/ runs-on: ubuntu-latest - permissions: - contents: read - statuses: write - steps: - name: Checkout id: checkout @@ -36,7 +31,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version-file: .node-version cache: npm - name: Install Dependencies diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44d8339..f4126e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: id: setup-node uses: actions/setup-node@v4 with: - node-version: 18 + node-version-file: .node-version cache: npm - name: Install Dependencies diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bc00bf0..ed9ec48 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -27,7 +27,7 @@ jobs: id: setup-node uses: actions/setup-node@v4 with: - node-version: 18 + node-version-file: .node-version cache: npm - name: Install Dependencies diff --git a/.node-version b/.node-version new file mode 100644 index 0000000..1cc433a --- /dev/null +++ b/.node-version @@ -0,0 +1 @@ +20.6.0 diff --git a/README.md b/README.md index fcbe0f7..9a87130 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,10 @@ need to perform some initial setup steps before you can develop your action. > [`nvm`](https://github.com/nvm-sh/nvm), you can run `nodenv install` in the > root of your repository to install the version specified in > [`package.json`](./package.json). Otherwise, 20.x or later should work! +> This template has a `.node-version` file at the root of the repository that +> will be used by `nodenv` or `nvm` to automatically switch to the correct +> version of Node.js when you `cd` into the repository. Additionally, this +> `.node-version` file is used by GitHub Actions in a few CI jobs. 1. :hammer_and_wrench: Install the dependencies @@ -44,13 +48,13 @@ need to perform some initial setup steps before you can develop your action. npm install ``` -1. :building_construction: Package the TypeScript for distribution +2. :building_construction: Package the TypeScript for distribution ```bash npm run bundle ``` -1. :white_check_mark: Run the tests +3. :white_check_mark: Run the tests ```bash $ npm test From e62403ee772df415e44943fbe37a6d8a5a8a0467 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:09:59 -0600 Subject: [PATCH 04/25] update workflow triggers and permissions --- .github/workflows/ci.yml | 3 +++ .github/workflows/linter.yml | 10 ++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4126e7..1dfab1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,9 @@ on: - main - 'releases/*' +permissions: + contents: read + jobs: test-typescript: name: TypeScript Tests diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index ed9ec48..c7b7160 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -5,19 +5,17 @@ on: branches: - main push: - branches-ignore: + branches: - main +permissions: + contents: read + jobs: lint: name: Lint Code Base runs-on: ubuntu-latest - permissions: - contents: read - packages: read - statuses: write - steps: - name: Checkout id: checkout From c1244bbb2e6f413038ac14bdece0542bd4a8bb16 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:11:06 -0600 Subject: [PATCH 05/25] add coverage badge to the readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9a87130..02015b6 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ ![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) [![Check dist/](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml) [![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) +[![coverage](./badges/coverage.svg)](./badges/coverage.svg) + Use this template to bootstrap the creation of a TypeScript action. :rocket: From 71a9d8ba3954aca0e3064b45de486f0768910c37 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:11:23 -0600 Subject: [PATCH 06/25] whitespace --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 02015b6..1281e19 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ [![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) [![coverage](./badges/coverage.svg)](./badges/coverage.svg) - Use this template to bootstrap the creation of a TypeScript action. :rocket: This template includes compilation support, tests, a validation workflow, From bbc4f562cd99e5a902413d0bbe93822c739b55aa Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:26:02 -0600 Subject: [PATCH 07/25] jest.spyOn GitHub core methods to clean up the test output --- __tests__/main.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 7a25abc..8205e39 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -24,6 +24,11 @@ const timeRegex = /^\d{2}:\d{2}:\d{2}/ describe('action', () => { beforeEach(() => { jest.clearAllMocks() + jest.spyOn(core, 'debug').mockImplementation() + jest.spyOn(core, 'error').mockImplementation() + jest.spyOn(core, 'getInput').mockImplementation() + jest.spyOn(core, 'setFailed').mockImplementation() + jest.spyOn(core, 'setOutput').mockImplementation() }) it('sets the time output', async () => { From 0aa0af1e02b32c4d10c9875288b10b5bb4906de8 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:27:59 -0600 Subject: [PATCH 08/25] add back `statuses: write` --- .github/workflows/linter.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index c7b7160..1f1c52c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,6 +10,7 @@ on: permissions: contents: read + statuses: write jobs: lint: From 5fd885c701683627ead42f4e705cf92c9eff24a5 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:33:49 -0600 Subject: [PATCH 09/25] add GrantBirki/json-yaml-validate --- .github/config/exclude.txt | 2 ++ .github/workflows/json-yaml-validate.yml | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/config/exclude.txt create mode 100644 .github/workflows/json-yaml-validate.yml diff --git a/.github/config/exclude.txt b/.github/config/exclude.txt new file mode 100644 index 0000000..a873322 --- /dev/null +++ b/.github/config/exclude.txt @@ -0,0 +1,2 @@ +# gitignore style exclude file for the GrantBirki/json-yaml-validate Action +.github/ diff --git a/.github/workflows/json-yaml-validate.yml b/.github/workflows/json-yaml-validate.yml new file mode 100644 index 0000000..bd7457c --- /dev/null +++ b/.github/workflows/json-yaml-validate.yml @@ -0,0 +1,23 @@ +name: actions-config-validation +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +permissions: + contents: read + pull-requests: write # enable write permissions for pull request comments + +jobs: + actions-config-validation: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: actions-config-validation + uses: GrantBirki/json-yaml-validate@3add42f5fa8bfff04a3fe664d27a316736257ef1 # pin@v2.3.1 + with: + comment: "true" # enable comment mode + exclude_file: ".github/config/exclude.txt" From 986aac3b5bb0c49f3d0c6bf6308ac8f586628371 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:35:26 -0600 Subject: [PATCH 10/25] fix markdown list --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1281e19..8defbb9 100644 --- a/README.md +++ b/README.md @@ -49,13 +49,13 @@ need to perform some initial setup steps before you can develop your action. npm install ``` -2. :building_construction: Package the TypeScript for distribution +1. :building_construction: Package the TypeScript for distribution ```bash npm run bundle ``` -3. :white_check_mark: Run the tests +1. :white_check_mark: Run the tests ```bash $ npm test From 0fbcfa12a609ad482c754575e7f7bebe88a68d96 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:47:29 -0600 Subject: [PATCH 11/25] rename new workflow --- .github/workflows/json-yaml-validate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/json-yaml-validate.yml b/.github/workflows/json-yaml-validate.yml index bd7457c..5e593d2 100644 --- a/.github/workflows/json-yaml-validate.yml +++ b/.github/workflows/json-yaml-validate.yml @@ -1,4 +1,4 @@ -name: actions-config-validation +name: json-yaml-validate on: push: branches: @@ -11,12 +11,12 @@ permissions: pull-requests: write # enable write permissions for pull request comments jobs: - actions-config-validation: + json-yaml-validate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: actions-config-validation + - name: json-yaml-validate uses: GrantBirki/json-yaml-validate@3add42f5fa8bfff04a3fe664d27a316736257ef1 # pin@v2.3.1 with: comment: "true" # enable comment mode From 9c2f71ce2ef42b7182e0c823a3f61eb63ed93de9 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:49:38 -0600 Subject: [PATCH 12/25] add branding section --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 7f69e47..101186a 100644 --- a/action.yml +++ b/action.yml @@ -2,6 +2,11 @@ name: 'The name of your action here' description: 'Provide a description here' author: 'Your name or organization here' +# Add your action's branding here. This will appear on the GitHub Marketplace. +branding: + icon: 'heart' + color: 'red' + # Define your inputs here. inputs: milliseconds: From 5b3b254a812aeee1836dc8f8cf1c4ad9de52b82d Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:50:45 -0600 Subject: [PATCH 13/25] add release helper script --- script/release | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 script/release diff --git a/script/release b/script/release new file mode 100644 index 0000000..18cca85 --- /dev/null +++ b/script/release @@ -0,0 +1,30 @@ +#!/bin/bash + +# Usage: +# script/release + +# COLORS +OFF='\033[0m' +RED='\033[0;31m' +GREEN='\033[0;32m' +BLUE='\033[0;34m' + +latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1)) +echo -e "The latest release tag is: ${BLUE}${latest_tag}${OFF}" +read -p 'New Release Tag (vX.X.X format): ' new_tag + +tag_regex='^v\d\.\d\.\d$' +echo "$new_tag" | grep -P -q $tag_regex + +if [[ $? -ne 0 ]]; then + echo "Tag: $new_tag is valid" +fi + +git tag -a $new_tag -m "$new_tag Release" + +echo -e "${GREEN}OK${OFF} - Tagged: $new_tag" + +git push --tags + +echo -e "${GREEN}OK${OFF} - Tags pushed to remote!" +echo -e "${GREEN}DONE${OFF}" From d303d44bf602b7b3de986d9fed17ec396a746aa3 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:51:10 -0600 Subject: [PATCH 14/25] executable --- script/release | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 script/release diff --git a/script/release b/script/release old mode 100644 new mode 100755 From a71e85eba63f7cd135b8e4609636976d26ced70a Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:52:55 -0600 Subject: [PATCH 15/25] add inline notes --- script/release | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/script/release b/script/release index 18cca85..246da59 100755 --- a/script/release +++ b/script/release @@ -1,5 +1,14 @@ #!/bin/bash +# About: +# This is a helper script to tag and push a new release. +# GitHub Actions use release tags to allow users to select a specific version of the action to use. +# This script will do the following: +# 1. Get the latest release tag +# 2. Prompt the user for a new release tag (while displaying the latest release tag, and a regex to validate the new tag) +# 3. Tag the new release +# 4. Push the new tag to the remote + # Usage: # script/release From 78a046bc59ce107119207911624eb4e25a1f802d Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:55:51 -0600 Subject: [PATCH 16/25] update release script for first time use --- script/release | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/script/release b/script/release index 246da59..0b79fb7 100755 --- a/script/release +++ b/script/release @@ -19,6 +19,13 @@ GREEN='\033[0;32m' BLUE='\033[0;34m' latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1)) + +# if the latest_tag is empty, then there are no tags - let the user know +if [[ -z "$latest_tag" ]]; then + echo -e "No tags found (yet) - continue to create your first tag and push it" + latest_tag="[unknown]" +fi + echo -e "The latest release tag is: ${BLUE}${latest_tag}${OFF}" read -p 'New Release Tag (vX.X.X format): ' new_tag From 12069c53d054ce70a3a51ede66d5dd271e693245 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 17:56:17 -0600 Subject: [PATCH 17/25] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8defbb9..4800b4a 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ action in the same repository. steps: - name: Checkout id: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test Local Action id: test-action @@ -192,7 +192,7 @@ hash. steps: - name: Checkout id: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test Local Action id: test-action From 5479e29632536daa7775c7d146b8122653fdbdcc Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 18:02:57 -0600 Subject: [PATCH 18/25] appease the linter --- script/release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/release b/script/release index 0b79fb7..f030a1d 100755 --- a/script/release +++ b/script/release @@ -14,11 +14,11 @@ # COLORS OFF='\033[0m' -RED='\033[0;31m' +# RED='\033[0;31m' GREEN='\033[0;32m' BLUE='\033[0;34m' -latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1)) +latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)") # if the latest_tag is empty, then there are no tags - let the user know if [[ -z "$latest_tag" ]]; then From 081e185c76848abf5eaf12856db22ab4e775a91b Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Tue, 31 Oct 2023 18:15:24 -0600 Subject: [PATCH 19/25] fix release script --- script/release | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/script/release b/script/release index f030a1d..0dd6139 100755 --- a/script/release +++ b/script/release @@ -14,7 +14,7 @@ # COLORS OFF='\033[0m' -# RED='\033[0;31m' +RED='\033[0;31m' GREEN='\033[0;32m' BLUE='\033[0;34m' @@ -27,16 +27,17 @@ if [[ -z "$latest_tag" ]]; then fi echo -e "The latest release tag is: ${BLUE}${latest_tag}${OFF}" -read -p 'New Release Tag (vX.X.X format): ' new_tag +read -r -p 'New Release Tag (vX.X.X format): ' new_tag -tag_regex='^v\d\.\d\.\d$' -echo "$new_tag" | grep -P -q $tag_regex - -if [[ $? -ne 0 ]]; then - echo "Tag: $new_tag is valid" +tag_regex='v[0-9]+\.[0-9]+\.[0-9]+$' +if echo "$new_tag" | grep -q -E "$tag_regex"; then + echo -e "Tag: ${BLUE}$new_tag${OFF} is valid" +else + echo -e "Tag: ${BLUE}$new_tag${OFF} is ${RED}not valid${OFF} (must be in vX.X.X format)" + exit 1 fi -git tag -a $new_tag -m "$new_tag Release" +git tag -a "$new_tag" -m "$new_tag Release" echo -e "${GREEN}OK${OFF} - Tagged: $new_tag" From 51bc172a7a83688ace1bddfe22ef04ceb13572b9 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Wed, 1 Nov 2023 13:43:25 -0400 Subject: [PATCH 20/25] Reset mocks on each test --- __tests__/main.test.ts | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 8205e39..30efdfb 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -9,26 +9,28 @@ import * as core from '@actions/core' import * as main from '../src/main' -// Mock the GitHub Actions core library -const debugMock = jest.spyOn(core, 'debug') -const getInputMock = jest.spyOn(core, 'getInput') -const setFailedMock = jest.spyOn(core, 'setFailed') -const setOutputMock = jest.spyOn(core, 'setOutput') - // Mock the action's main function const runMock = jest.spyOn(main, 'run') // Other utilities const timeRegex = /^\d{2}:\d{2}:\d{2}/ +// Mock the GitHub Actions core library +let debugMock: jest.SpyInstance +let errorMock: jest.SpyInstance +let getInputMock: jest.SpyInstance +let setFailedMock: jest.SpyInstance +let setOutputMock: jest.SpyInstance + describe('action', () => { beforeEach(() => { jest.clearAllMocks() - jest.spyOn(core, 'debug').mockImplementation() - jest.spyOn(core, 'error').mockImplementation() - jest.spyOn(core, 'getInput').mockImplementation() - jest.spyOn(core, 'setFailed').mockImplementation() - jest.spyOn(core, 'setOutput').mockImplementation() + + debugMock = jest.spyOn(core, 'debug').mockImplementation() + errorMock = jest.spyOn(core, 'error').mockImplementation() + getInputMock = jest.spyOn(core, 'getInput').mockImplementation() + setFailedMock = jest.spyOn(core, 'setFailed').mockImplementation() + setOutputMock = jest.spyOn(core, 'setOutput').mockImplementation() }) it('sets the time output', async () => { @@ -60,6 +62,7 @@ describe('action', () => { 'time', expect.stringMatching(timeRegex) ) + expect(errorMock).not.toHaveBeenCalled() }) it('sets a failed status', async () => { @@ -81,5 +84,6 @@ describe('action', () => { 1, 'milliseconds not a number' ) + expect(errorMock).not.toHaveBeenCalled() }) }) From 9beba2e5bca6fb6c5b0531409202d29480180dfb Mon Sep 17 00:00:00 2001 From: Grant Birkinbine Date: Wed, 1 Nov 2023 14:49:04 -0600 Subject: [PATCH 21/25] Update README.md Co-authored-by: Nick Alteen --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4800b4a..36dc136 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![CI](https://github.com/actions/typescript-action/actions/workflows/ci.yml/badge.svg) [![Check dist/](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/check-dist.yml) [![CodeQL](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/actions/typescript-action/actions/workflows/codeql-analysis.yml) -[![coverage](./badges/coverage.svg)](./badges/coverage.svg) +[![Coverage](./badges/coverage.svg)](./badges/coverage.svg) Use this template to bootstrap the creation of a TypeScript action. :rocket: From cf46713d862707553d6e3335466d19ca34e2dd6b Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Wed, 1 Nov 2023 14:53:57 -0600 Subject: [PATCH 22/25] remove duplicate workflow --- .github/config/exclude.txt | 2 -- .github/workflows/json-yaml-validate.yml | 23 ----------------------- 2 files changed, 25 deletions(-) delete mode 100644 .github/config/exclude.txt delete mode 100644 .github/workflows/json-yaml-validate.yml diff --git a/.github/config/exclude.txt b/.github/config/exclude.txt deleted file mode 100644 index a873322..0000000 --- a/.github/config/exclude.txt +++ /dev/null @@ -1,2 +0,0 @@ -# gitignore style exclude file for the GrantBirki/json-yaml-validate Action -.github/ diff --git a/.github/workflows/json-yaml-validate.yml b/.github/workflows/json-yaml-validate.yml deleted file mode 100644 index 5e593d2..0000000 --- a/.github/workflows/json-yaml-validate.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: json-yaml-validate -on: - push: - branches: - - main - pull_request: - workflow_dispatch: - -permissions: - contents: read - pull-requests: write # enable write permissions for pull request comments - -jobs: - json-yaml-validate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: json-yaml-validate - uses: GrantBirki/json-yaml-validate@3add42f5fa8bfff04a3fe664d27a316736257ef1 # pin@v2.3.1 - with: - comment: "true" # enable comment mode - exclude_file: ".github/config/exclude.txt" From ea5b2de2c85a96550878611b94115b6ddaf77139 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Wed, 1 Nov 2023 14:58:08 -0600 Subject: [PATCH 23/25] add 'Publishing a new release' to the docs --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 36dc136..9c349db 100644 --- a/README.md +++ b/README.md @@ -204,3 +204,17 @@ steps: id: output run: echo "${{ steps.test-action.outputs.time }}" ``` + +## Publishing a new release + +This project includes a helper script designed to streamline the process of tagging and pushing new releases for GitHub Actions. + +GitHub Actions allows users to select a specific version of the action to use, based on release tags. Our script simplifies this process by performing the following steps: + +1. **Retrieving the latest release tag:** The script starts by fetching the most recent release tag by looking at the local data available in your repository. + +1. **Prompting for a new release tag:** The user is then prompted to enter a new release tag. To assist with this, the script displays the latest release tag and provides a regex to validate the format of the new tag. + +1. **Tagging the new release:** Once a valid new tag is entered, the script tags the new release. + +1. **Pushing the new tag to the remote:** Finally, the script pushes the new tag to the remote repository. From here, you will need to create a new release in GitHub and users can easily reference the new tag in their workflows. From ba05111383eab2866da032f280d32832afb5e957 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Wed, 1 Nov 2023 15:03:35 -0600 Subject: [PATCH 24/25] regex -> regular expression --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c349db..0ada7b9 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ GitHub Actions allows users to select a specific version of the action to use, b 1. **Retrieving the latest release tag:** The script starts by fetching the most recent release tag by looking at the local data available in your repository. -1. **Prompting for a new release tag:** The user is then prompted to enter a new release tag. To assist with this, the script displays the latest release tag and provides a regex to validate the format of the new tag. +1. **Prompting for a new release tag:** The user is then prompted to enter a new release tag. To assist with this, the script displays the latest release tag and provides a regular expression to validate the format of the new tag. 1. **Tagging the new release:** Once a valid new tag is entered, the script tags the new release. From e06bd3fa5bd94d5141e74e2f09fadd9ab40fc8c4 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Thu, 2 Nov 2023 09:34:12 -0400 Subject: [PATCH 25/25] Format with prettier --- README.md | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 0ada7b9..ebe33cc 100644 --- a/README.md +++ b/README.md @@ -33,15 +33,13 @@ need to perform some initial setup steps before you can develop your action. > [!NOTE] > > You'll need to have a reasonably modern version of -> [Node.js](https://nodejs.org) handy. If you are using a version manager like -> [`nodenv`](https://github.com/nodenv/nodenv) or -> [`nvm`](https://github.com/nvm-sh/nvm), you can run `nodenv install` in the -> root of your repository to install the version specified in -> [`package.json`](./package.json). Otherwise, 20.x or later should work! -> This template has a `.node-version` file at the root of the repository that -> will be used by `nodenv` or `nvm` to automatically switch to the correct -> version of Node.js when you `cd` into the repository. Additionally, this -> `.node-version` file is used by GitHub Actions in a few CI jobs. +> [Node.js](https://nodejs.org) handy (20.x or later should work!). If you are +> using a version manager like [`nodenv`](https://github.com/nodenv/nodenv) or +> [`nvm`](https://github.com/nvm-sh/nvm), this template has a `.node-version` +> file at the root of the repository that will be used to automatically switch +> to the correct version when you `cd` into the repository. Additionally, this +> `.node-version` file is used by GitHub Actions in any `actions/setup-node` +> actions. 1. :hammer_and_wrench: Install the dependencies @@ -207,14 +205,20 @@ steps: ## Publishing a new release -This project includes a helper script designed to streamline the process of tagging and pushing new releases for GitHub Actions. +This project includes a helper script designed to streamline the process of +tagging and pushing new releases for GitHub Actions. -GitHub Actions allows users to select a specific version of the action to use, based on release tags. Our script simplifies this process by performing the following steps: +GitHub Actions allows users to select a specific version of the action to use, +based on release tags. Our script simplifies this process by performing the +following steps: -1. **Retrieving the latest release tag:** The script starts by fetching the most recent release tag by looking at the local data available in your repository. - -1. **Prompting for a new release tag:** The user is then prompted to enter a new release tag. To assist with this, the script displays the latest release tag and provides a regular expression to validate the format of the new tag. - -1. **Tagging the new release:** Once a valid new tag is entered, the script tags the new release. - -1. **Pushing the new tag to the remote:** Finally, the script pushes the new tag to the remote repository. From here, you will need to create a new release in GitHub and users can easily reference the new tag in their workflows. +1. **Retrieving the latest release tag:** The script starts by fetching the most + recent release tag by looking at the local data available in your repository. +1. **Prompting for a new release tag:** The user is then prompted to enter a new + release tag. To assist with this, the script displays the latest release tag + and provides a regular expression to validate the format of the new tag. +1. **Tagging the new release:** Once a valid new tag is entered, the script tags + the new release. +1. **Pushing the new tag to the remote:** Finally, the script pushes the new tag + to the remote repository. From here, you will need to create a new release in + GitHub and users can easily reference the new tag in their workflows.