issue #153 - fixed flashing project elements while play #296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
- push | |
jobs: | |
run-puppeteer: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
- name: Prepare dependencies | |
run: sudo apt-get install xvfb && npm install | |
- name: Run linters | |
run: npm run lint | |
- name: Run tests | |
run: xvfb-run npm test |