-
Notifications
You must be signed in to change notification settings - Fork 3
Update cypress to latest version #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Hey @joergmis, thanks for the PR. Is the |
Hey @mikefrancis I looked into it and # list deployments from your account
curl -X GET "https://api.vercel.com/v6/deployments" -H "Authorization: Bearer ${TOKEN}"
# list deployments from a specific project (from your account)
curl -X GET "https://api.vercel.com/v6/deployments?projectId=${PROJECT_ID}" -H "Authorization: Bearer ${TOKEN}"
# list deployments from a team
curl -X GET "https://api.vercel.com/v6/deployments?teamId=${TEAM_ID}" -H "Authorization: Bearer ${TOKEN}"
# list deployments from a specific project (from a team)
curl -X GET "https://api.vercel.com/v6/deployments?teamId=${TEAM_ID}&projectId=${PROJECT_ID}" -H "Authorization: Bearer ${TOKEN}" I added two commits which add:
This way I think it should still work for both teams and non-teams. The The |
Good work @joergmis, would it make sense to upgrade directly to version 13? @mikefrancis what else is needed to be able to merge the PR? |
Good point @matiascaputti! I updated the version and tested my forked action (full example at Startup-Nights/website#133): - uses: joergmis/vercel-cypress@main
with:
vercel-token: ${{ secrets.VERCEL_SECRET }}
project-id: ${{ secrets.VERCEL_PROJECT_ID }}
team-id: ${{ secrets.VERCEL_TEAM_ID }}
options: "--browser chrome --spec cypress/e2e/*" There was an issue in the entrypoint script - not sure why this wasn't an issue previously but anyway, it works again 😄 |
I tried running this action but also saw an issue with firing up Docker. Is this the error you saw @joergmis ?
|
@live-alchemy the issue I saw was in the entrypoint script. Try rerunning the workflow. This is most likely just a temporary issue. |
Hey there! I was looking for something like this and updated the versions since they were a bit out of date 😉
12.13.0
v6
API of vercel