-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.49 KB
/
ci.yml
File metadata and controls
57 lines (48 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v6
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm test
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm exec tsc --noEmit
- name: Build
run: pnpm build
env:
DATABASE_URL: postgresql://placeholder:placeholder@localhost/placeholder
PUSHER_APP_ID: '1'
PUSHER_KEY: placeholder
PUSHER_SECRET: placeholder
PUSHER_CLUSTER: us2
NEXT_PUBLIC_PUSHER_KEY: placeholder
NEXT_PUBLIC_PUSHER_CLUSTER: us2
NEXT_PUBLIC_APP_ID: app_placeholder
NEXT_PUBLIC_ACTION_ID: placeholder
APP_ID: app_placeholder
NEXT_PUBLIC_WORLD_APP_ID: app_placeholder
NEXT_PUBLIC_CHAIN_ID: '480'
NEXT_PUBLIC_WC_RPC: https://worldchain-mainnet.g.alchemy.com/public
HIPPIUS_ACCESS_KEY_ID: placeholder
HIPPIUS_SECRET_ACCESS_KEY: placeholder
HIPPIUS_BUCKET: arkora-uploads
HIPPIUS_S3_ENDPOINT: https://s3.hippius.com
HIPPIUS_PUBLIC_URL: https://s3.hippius.com
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}