diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 171e205..3953337 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -8,6 +8,9 @@ on: pull_request: paths-ignore: - '**.md' + + workflow_dispatch: + jobs: run: name: Run diff --git a/package.json b/package.json index d7d88f2..5142885 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts", "format": "prettier --write \"{,!(node_modules)/**/}*.ts\"", - "format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"", + "format-check": "./run.sh", "release": "ncc build -o dist/setup src/setup-python.ts && ncc build -o dist/cache-save src/cache-save.ts && git add -f dist/", "test": "jest" }, diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..300947b --- /dev/null +++ b/run.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "This was not supposed to happen" \ No newline at end of file