- Sometime dev.to api may respond with
5xx
. - If you're using your personal dev.to account for development
set
published: false
or removed it from front-matter. - Set
ACTIONS_RUNNER_DEBUG
GitHub Environment Variable toTRUE
for extra logs.
I'm using yarn as package manager. If you are using npm, You have to replace yarn
with npm
or create new script:
...
scripts: {
"rebuild": "yarn clean && yarn build",
+ "rebuild:npm": "npm clean && npm build"
}
...
$ yarn test
To run this action locally,You have to use act. After Install act follow these steps.
File: .secret
DEVTO_API_KEY=
$ act