You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following steps in my github action .yml file:
- uses: actions/checkout@v2
- name: Enter serverless dir and deploy
uses: serverless/[email protected]
with:
args: -c "cd ./src/serverless && serverless plugin install --name serverless-plugin-tracing && serverless deploy"
entrypoint: /bin/sh
But I'm getting an error, despite the fact that I do have a package.json file in my src/serverless folder: npm ERR! enoent ENOENT: no such file or directory, open '/github/home/.npm/_cacache/tmp/jrJNSF/package.json'
Does anyone know of a workaround/solution for this?
The text was updated successfully, but these errors were encountered:
Sorry that was just a copy pasting mistake, the indentation of the entrypoint line is the same as args in my actual repo. I've updated my original comment to reflect this
I have the following steps in my github action .yml file:
But I'm getting an error, despite the fact that I do have a package.json file in my src/serverless folder:
npm ERR! enoent ENOENT: no such file or directory, open '/github/home/.npm/_cacache/tmp/jrJNSF/package.json'
Does anyone know of a workaround/solution for this?
The text was updated successfully, but these errors were encountered: