chore: fixed line-height to not affect astral accessibility widgets (… #119
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: e2e Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- .github/workflows/cypress.yml | |
- projects/**/* | |
- package.json | |
- yarn.lock | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install yarn packages | |
run: | | |
yarn install | |
- name: Run Cypress for environment | |
uses: cypress-io/github-action@v2 | |
with: | |
start: | | |
yarn start:test-server | |
wait-on: "http://localhost:8000" | |
wait-on-timeout: 300 | |
browser: chrome | |
config-file: cypress.config.ts |