Skip to content

fix: fix @worldcoin/idkit/internal import #369

fix: fix @worldcoin/idkit/internal import

fix: fix @worldcoin/idkit/internal import #369

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
cache: 'pnpm'
node-version: 18
- name: Install dependencies
run: pnpm install
- name: Typecheck & Build
run: pnpm build
# NOTE: Lint needs to run after build because it checks the compiled files for types
- name: Lint
run: pnpm lint