Feat(Timeline): Add timeOffset in options so that the scale can be aligned with data #505
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 | |
on: | |
pull_request: | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
name: E2E tests | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/workflows/yarn | |
- uses: browser-actions/setup-chrome@v1 | |
- name: Install Cypress | |
run: | | |
./node_modules/.bin/cypress install | |
- uses: ./.github/workflows/build | |
- uses: cypress-io/github-action@v4 | |
with: | |
spec: cypress/e2e/*.cy.js | |
browser: chrome | |
record: false | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots |