Landing Page: Move ad-free benefit from tier2 to tier3 - US only #7771
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: Test Dependabot PRs | |
on: | |
pull_request: | |
env: | |
GU_SUPPORT_WORKERS_LOAD_S3_CONFIG: false | |
jobs: | |
run_node_tests: | |
if: github.actor == 'dependabot[bot]' | |
name: test dependabot | |
runs-on: ubuntu-latest | |
steps: | |
# ---- Logging ---- # | |
- name: Env | |
run: env | |
- name: Dump GitHub context | |
id: github_context_step | |
run: echo $JSON | |
env: | |
JSON: ${{ toJSON(github) }} | |
# ---- Setup ---- # | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
cache-dependency-path: support-frontend/yarn.lock | |
- name: Install - support-frontend | |
run: yarn | |
working-directory: support-frontend | |
- name: Install - CDK | |
run: yarn | |
working-directory: cdk | |
# ---- Test ---- # | |
- name: Test - support-frontend | |
run: yarn run test | |
working-directory: support-frontend | |
- name: Test - CDK | |
run: yarn run test | |
working-directory: cdk | |