Skip to content

Commit 65336ca

Browse files
author
abrulic
committed
check
1 parent 8f5f5fd commit 65336ca

4 files changed

Lines changed: 99 additions & 221 deletions

File tree

.github/workflows/branch-preview.yml

Lines changed: 0 additions & 95 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ concurrency:
33
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
44
cancel-in-progress: true
55
on:
6-
push:
7-
branches: [main]
86
pull_request:
97
branches: [main]
108

@@ -41,9 +39,8 @@ jobs:
4139
uses: pnpm/action-setup@v4
4240
- name: Install dependencies
4341
run: pnpm install
44-
- name: Install Playwright browsers
45-
# downloads browser binaries required by Playwright (Chromium/Firefox/WebKit)
46-
run: pnpm exec playwright install --with-deps
42+
- run: pnpm install --prefer-offline --frozen-lockfile
43+
- run: pnpm exec playwright install chromium --with-deps
4744
- name: 🔎 Validate
4845
run: pnpm run test
4946

@@ -61,8 +58,7 @@ jobs:
6158
node-version-file: "package.json"
6259
cache: pnpm
6360

64-
# One install at the workspace root is enough
65-
- name: Install deps (root)
61+
- name: Install deps
6662
run: pnpm install --prefer-offline --frozen-lockfile
6763

6864
# Decide where the docs app lives: ./docs or .

app/ui/link/link.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Link as ReactRouterLink, type LinkProps as ReactRouterLinkProps } from
22
import type { Language } from "~/localization/resource"
33
import { useEnhancedTo } from "./useEnhancedTo"
44

5-
export interface LinkProps extends ReactRouterLinkProps {
5+
interface LinkProps extends ReactRouterLinkProps {
66
keepSearchParams?: boolean
77
language?: Language
88
}

0 commit comments

Comments
 (0)