Skip to content

Meta: Ensure new or edited features have Test URLs #1

Meta: Ensure new or edited features have Test URLs

Meta: Ensure new or edited features have Test URLs #1

Workflow file for this run

name: Test URLs
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Ensure
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
with:
files: source/features/*.tsx
- name: Every new/edited file must have a test URL
run: bash build/verify-test-urls.sh ${{steps.changed-files.outputs.all_changed_files}}