Skip to content

Commit

Permalink
fix(ci): execution of Cypress test on GitHub Actions workflow (#274)
Browse files Browse the repository at this point in the history
To fix failing CI workflow: https://github.com/openwhyd/openwhyd/runs/477958067

Initially, I thought that some dependencies were missing.

Actually, downgrading the `ubuntu` images fixed the issue.

Possible next step: simplify `nodejs.yml` by using `cypress-io/github-action@v1` instead of setting up everything ourselves, as explained in https://github.com/cypress-io/github-action#basic.
  • Loading branch information
adrienjoly committed Mar 1, 2020
1 parent 5e5bdd8 commit dc73eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
cypress:
name: Cypress E2E (experimental)
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
runs-on: ubuntu-16.04
services:
mongodb:
image: docker://mongo:3.4
Expand Down

0 comments on commit dc73eb2

Please sign in to comment.