This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
End-to-End Tests on master #1327
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: End-to-End Tests on master | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '30 1 * * *' | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '17.x' | |
- run: brew unlink [email protected] | |
- run: brew install [email protected] | |
- run: npm install | |
- run: brew install git-cinnabar | |
- name: Run e2e test on master | |
run: python3 scripts/tests/e2e-tests.py gecko |