E2E #214
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: | |
schedule: | |
# Run this job daily to detect dead slack invite links | |
- cron: "0 0 * * *" | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- working-directory: website | |
run: yarn | |
- working-directory: website | |
run: yarn e2e-setup | |
- working-directory: website | |
run: yarn build | |
- working-directory: website | |
run: yarn e2e-test |