Skip to content

Commit 1d4bd1b

Browse files
authored
Merge branch 'main' into stripe-webhooks-improvement-v2
2 parents c4c8ed4 + bc3bbbd commit 1d4bd1b

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/autofix.ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Setup Go
2222
uses: ./.github/actions/setup-go
2323

24+
- name: Install Go tooling
25+
run: go work init . ./tools
26+
2427
- name: Format
2528
run: make fmt
2629

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dist
2020
.wrangler
2121
.vitest
2222
.react-email
23+
.kiro
2324

2425
.secrets.json
2526
certs/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install: ## Install all dependencies
2525
@[ -f go.work ] || go work init . ./tools
2626

2727
go mod download
28-
pnpm --dir=web install
28+
pnpm --dir=web install --frozen-lockfile
2929

3030

3131

web/apps/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY . .
1111
WORKDIR /unkey/web
1212

1313

14-
RUN pnpm install
14+
RUN pnpm install --frozen-lockfile
1515

1616
RUN pnpm turbo build --filter=api...
1717

web/apps/dashboard/local.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33

4-
pnpm install
4+
pnpm install --frozen-lockfile
55

66
docker compose -f ../../../deployment/docker-compose.yaml up -d planetscale agent clickhouse apiv2
77

0 commit comments

Comments
 (0)