This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
AMP-83919 [BigQueryGA4Import] Add notes of BigQuery import to all places mentioning GA4 #1190
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: Internal Link Check | |
on: | |
# Trigger at every push. Action will also be visible from Pull Requests to master | |
pull_request: | |
branches: [master, main] | |
jobs: | |
build: | |
name: Internal Link Check | |
runs-on: ubuntu-latest | |
steps: | |
# Git Checkout | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
# Setup Node | |
- name: Setup Node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
# Setup Python | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- run: pip install -r requirements.txt | |
# Internal Link Check | |
- name: Internal Link Check | |
run: ./linkchecker |