Added fix to hide or show the beetle icon on the feedback button (#885) #1120
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: Test CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 14.x | |
env: | |
NODE_ENV: development | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- run: npm install | |
- run: npm run build:packages | |
- name: Run headless test | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm run test:packages |