Skip to content

feat: Add highlighted events section to Breakpoint homepage #3392

feat: Add highlighted events section to Breakpoint homepage

feat: Add highlighted events section to Breakpoint homepage #3392

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
NODE_OPTIONS: --max-old-space-size=8192
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.15.1
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: "pnpm"
- name: Set fs.inotify
run: sudo sysctl -w fs.inotify.max_user_watches=524288
- name: Install Safe Chain
run: |
npm install --global @aikidosec/safe-chain
safe-chain setup-ci
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm exec turbo run test --filter='!@workspace/docs-examples'