Skip to content

Adjust local dev script to work with newest contracts, removing need for explicit EDS launching #79

Adjust local dev script to work with newest contracts, removing need for explicit EDS launching

Adjust local dev script to work with newest contracts, removing need for explicit EDS launching #79

Workflow file for this run

name: CI
on:
pull_request:
branches: [main,staging]
types: [opened, reopened, labeled, synchronize]
env:
NODE_ENV: 'TEST'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: './.github/setup'
- name: Building
run: pnpm build
- name: Linting
run: pnpm lint:ci
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: './.github/setup'
- name: Running tests
run: pnpm test:ci