Skip to content

Merge pull request #2269 from joalavedra/patch-1 #59

Merge pull request #2269 from joalavedra/patch-1

Merge pull request #2269 from joalavedra/patch-1 #59

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for git diff commands
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
cache-dependency-path: website/yarn.lock
- name: Install dependencies
working-directory: website
run: yarn install --frozen-lockfile
- name: Run tests
working-directory: website
run: yarn test
- name: Check for missing redirects
working-directory: website
run: yarn tsx scripts/check-redirects.ts --ci