From e794f5cbb7ae2d4b892d536f015d98cd7c8d2a7d Mon Sep 17 00:00:00 2001 From: Nahue Date: Sat, 13 Jan 2024 00:35:56 -0300 Subject: [PATCH] Package information and mods --- .github/CODEOWNERS | 9 +++++++++ README.md | 6 +++--- badges/coverage.svg | 2 +- package.json | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..bee09e6 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,9 @@ +# This is a comment. +# Each line is a file pattern followed by one or more owners. + +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence, +# @global-owner1 and @global-owner2 will be requested for +# review when someone opens a pull request. + +* @nahuelhds \ No newline at end of file diff --git a/README.md b/README.md index 305c89d..e5ed314 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ need to perform some initial setup steps before you can develop your action. 1. :building_construction: Package the TypeScript for distribution ```bash - npm runAction bundle + npm run bundle ``` 1. :white_check_mark: Run the tests @@ -121,7 +121,7 @@ So, what are you waiting for? Go ahead and start customizing your action! 1. Format, test, and build the action ```bash - npm runAction all + npm run all ``` > [!WARNING] @@ -200,7 +200,7 @@ steps: - name: Test Local Action id: test-action - uses: actions/typescript-action@v1 # Commit with the `v1` tag + uses: nahuelhds/rss-entries-fecth-action@v1 # Commit with the `v1` tag with: milliseconds: 1000 diff --git a/badges/coverage.svg b/badges/coverage.svg index 5bb55be..a9ebb1f 100644 --- a/badges/coverage.svg +++ b/badges/coverage.svg @@ -1 +1 @@ -Coverage: 100%Coverage100% \ No newline at end of file +Coverage: 97.51%Coverage97.51% \ No newline at end of file diff --git a/package.json b/package.json index 85eead5..4208608 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "node": ">=20" }, "scripts": { - "bundle": "npm run format:write && npm run lint && npm test && npm run package", + "bundle": "npm run format:write && npm run package", "ci-test": "jest", "coverage": "make-coverage-badge --output-path ./badges/coverage.svg", "format:write": "prettier --write **/*.ts",