Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .github/workflows/build-and-deploy_devresults-xdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Node.js version
uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"

- uses: pnpm/action-setup@v3
with:
Expand All @@ -35,14 +35,23 @@ jobs:
- name: lint
run: pnpm lint

- name: test
run: |
pnpm test
pnpm test:pw
- name: unit tests
run: pnpm test

- name: build
run: pnpm build

- name: playwright tests
id: playwright
run: pnpm test:pw

- name: Capture playwright output
if: ${{ failure() && steps.playwright.conclusion == 'failure' }}
uses: actions/upload-artifact@v4
with:
name: playwright-test-results
path: ./test-results

- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ test-results
typings
yarn-debug.log*
yarn-error.log*
.copilotcontext
.copilotcontext
.react-router/
2 changes: 1 addition & 1 deletion app/ErrorBoundary.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useRouteError } from "@remix-run/react"
import { useRouteError } from "react-router"
import { ErrorScreen } from "ui/ErrorScreen"

export function ErrorBoundary() {
Expand Down
3 changes: 3 additions & 0 deletions app/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { Config, Defaults, Envs, Local } from "@dxos/config"

export const configProvider = async () => new Config(Envs(), Local(), Defaults())
90 changes: 0 additions & 90 deletions app/context/Auth/AuthContextProvider.tsx

This file was deleted.

18 changes: 0 additions & 18 deletions app/context/Auth/createDevice.ts

This file was deleted.

30 changes: 0 additions & 30 deletions app/context/Auth/createRepoWithAuth.ts

This file was deleted.

7 changes: 0 additions & 7 deletions app/context/Auth/getDeviceName.ts

This file was deleted.

37 changes: 0 additions & 37 deletions app/context/Auth/getInitialContacts.ts

This file was deleted.

17 changes: 0 additions & 17 deletions app/context/Auth/getRootDocumentIdFromTeam.ts

This file was deleted.

10 changes: 0 additions & 10 deletions app/context/Auth/getSyncServer.ts

This file was deleted.

53 changes: 0 additions & 53 deletions app/context/Auth/initializeAuthRepo.ts

This file was deleted.

8 changes: 0 additions & 8 deletions app/context/Auth/parseInvitationCode.ts

This file was deleted.

6 changes: 0 additions & 6 deletions app/context/Auth/storeRootDocumentIdOnTeam.ts

This file was deleted.

Loading