Skip to content
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

Difficulty running testem on github actions #1415

Open
asturur opened this issue Jan 17, 2021 · 0 comments
Open

Difficulty running testem on github actions #1415

asturur opened this issue Jan 17, 2021 · 0 comments

Comments

@asturur
Copy link

asturur commented Jan 17, 2021

I'm trying to move my travisci setup to github actions.
one of my tests uses testem to run on firefox/chrome.
I have difficulties running it, the test start but never ends, and i see no output.

This is my action file:

# This workflow will do a clean install of node dependencies, build the library, run testem for firefox

name: Unit tests on Firefox

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Unit tests on Firefox
      uses: actions/setup-node@v1
      with:
        node-version: 14.x
    - run: npm ci
    - run: npm run build:fast
    - name: Run headless test
      uses: GabrielBB/xvfb-action@v1
      with:
        run: npm run testem ci --port 8080 -f testem.json -l Firefox

And this is what i see after i cancel the build after 30minutes:

image

Those are the logs:
https://github.com/fabricjs/fabric.js/pull/6811/checks?check_run_id=1716698233

So the tests run, but do not complete.

Anyone knows how to make it work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant