MR-3545, MR-2370: Fix change history, add cypress tests, and turn on remaining API Unit tests #849
Workflow file for this run
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: Validate PRs | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validate-pr: | |
name: Validate PR | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- name: Setup env | |
uses: ./.github/actions/setup_env | |
- name: DangerJS | |
run: yarn danger ci | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN}} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |