-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: drptbl <[email protected]>
- Loading branch information
Showing
9 changed files
with
81 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: CodeQL | |
on: | ||
push: | ||
branches: | ||
- new-dawn | ||
- dev | ||
pull_request: | ||
schedule: | ||
- cron: '0 6 * * 3' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: 🎨 Lint | |
on: | ||
push: | ||
branches: | ||
- new-dawn | ||
- dev | ||
pull_request: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: 🧑🔧 Test | |
on: | ||
push: | ||
branches: | ||
- new-dawn | ||
- dev | ||
pull_request: | ||
paths: | ||
- '.github/actions/**/*.yml' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,57 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { sidebar } from './sidebar' | ||
import { defineConfig } from "vitepress"; | ||
import { sidebar } from "./sidebar"; | ||
|
||
const pkg = await import('../node_modules/@synthetixio/synpress/package.json') | ||
const pkg = await import("../node_modules/@synthetixio/synpress/package.json"); | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
cleanUrls: true, | ||
title: 'Synpress', | ||
description: 'E2E testing library for Web3 dapps.', | ||
title: "Synpress", | ||
description: "E2E testing library for Web3 dapps.", | ||
lastUpdated: true, | ||
head: [['link', { rel: 'icon', href: '/favicon.ico' }]], | ||
head: [["link", { rel: "icon", href: "/favicon.ico" }]], | ||
themeConfig: { | ||
editLink: { | ||
pattern: 'https://github.com/Synthetixio/synpress/tree/new-dawn/docs/:path', | ||
text: 'Suggest changes to this page' | ||
pattern: "https://github.com/Synthetixio/synpress/tree/dev/docs/:path", | ||
text: "Suggest changes to this page", | ||
}, | ||
|
||
externalLinkIcon: true, | ||
|
||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Docs', link: '/docs/getting-started' }, | ||
{ text: 'API', link: '/api/index/' }, | ||
{ text: 'Examples', link: 'https://github.com/Synthetixio/synpress/tree/new-dawn/examples' }, | ||
{ text: "Docs", link: "/docs/getting-started" }, | ||
{ text: "API", link: "/api/index/" }, | ||
{ | ||
text: "Examples", | ||
link: "https://github.com/Synthetixio/synpress/tree/dev/examples", | ||
}, | ||
{ | ||
text: pkg.version, | ||
items: [ | ||
// TODO: Add changelog | ||
{ | ||
text: 'Check out our Discord!', | ||
link: 'https://discord.gg/XhZKSRGtWc' | ||
} | ||
] | ||
} | ||
text: "Check out our Discord!", | ||
link: "https://discord.gg/XhZKSRGtWc", | ||
}, | ||
], | ||
}, | ||
], | ||
|
||
sidebar, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/Synthetixio/synpress/tree/new-dawn' }, | ||
{ icon: 'discord', link: 'https://discord.gg/XhZKSRGtWc' }, | ||
{ icon: 'x', link: 'https://twitter.com/Synpress_' } | ||
{ | ||
icon: "github", | ||
link: "https://github.com/Synthetixio/synpress/tree/dev", | ||
}, | ||
{ icon: "discord", link: "https://discord.gg/XhZKSRGtWc" }, | ||
{ icon: "x", link: "https://twitter.com/Synpress_" }, | ||
], | ||
|
||
footer: { | ||
message: 'Supported by 🔴 <a href="https://www.optimism.io/" target="_blank">Optimism</a>' | ||
} | ||
} | ||
}) | ||
message: | ||
'Supported by 🔴 <a href="https://www.optimism.io/" target="_blank">Optimism</a>', | ||
}, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# example-new-dawn | ||
# example-ethereum-wallet-mock | ||
|
||
## 0.0.3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# example-new-dawn | ||
# example-metamask | ||
|
||
## 0.0.3 | ||
|
||
|