Skip to content

Newspaper Archive : Benefit copy, visual updates, thankyou component #6854

Newspaper Archive : Benefit copy, visual updates, thankyou component

Newspaper Archive : Benefit copy, visual updates, thankyou component #6854

Workflow file for this run

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