Skip to content

Merge pull request #2762 from OffchainLabs/revert-2761-deprecate-laye… #1467

Merge pull request #2762 from OffchainLabs/revert-2761-deprecate-laye…

Merge pull request #2762 from OffchainLabs/revert-2761-deprecate-laye… #1467

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: 22
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Check for missing redirects
run: yarn tsx scripts/check-redirects.ts --ci