Skip to content

Following in the footsteps of giants. #2

Following in the footsteps of giants.

Following in the footsteps of giants. #2

Workflow file for this run

name: E2E Tests
on:
push:
env:
CN_API_KEY: ${{ secrets.CN_API_KEY }}
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Install dependencies
run: npm ci
working-directory: e2e
- name: Run integration tests
run: pnpm test
working-directory: e2e