hello, in the last days I get email that my workflow has error on every execution. I did not change anything in the code, it was working perfectly before.
I use email + nodejs code workflow
The code does what I want, no problems but I get this error, idk why.
I can confirm that downgrading to axios@1.1.3 resolves the issue for me:
// To use any npm package on Pipedream, just import it
import axios from "axios@1.1.3"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})