Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfrenken committed Feb 6, 2024
1 parent 4d56668 commit a5419b1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: "Test the action"
on:
workflow_dispatch:
pull_request:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24123,7 +24123,7 @@ module.exports = class BaseVersioning {
* Abstract method for parsing the file
*/
parseFile = () => {
throw new Error('Implement readFile logic in class!')
throw new Error('Implement parseFile logic in class!')
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/version/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = class BaseVersioning {
* Abstract method for parsing the file
*/
parseFile = () => {
throw new Error('Implement readFile logic in class!')
throw new Error('Implement parseFile logic in class!')
}

/**
Expand Down

0 comments on commit a5419b1

Please sign in to comment.