188651494 pixi js integration #1
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: Regression Label | |
on: | |
pull_request: | |
types: [ labeled ] | |
jobs: | |
re_run: | |
# only continue if a push or PR labeled with 'run regression' | |
if: github.event.label.name == 'graph-pixi-tests' | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
steps: | |
- name: Run Cypress tests for graph-pixi | |
run: npm run cypress:run -- --spec "cypress/e2e/pixi-interaction/*" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# set repository so we don't have to check out all of the code | |
GH_REPO: ${{github.repository}} |