mirror of
https://github.com/zen-browser/www
synced 2026-04-25 17:14:56 +02:00
chore(ci): enhance CI pipeline with playwright container and adjust job dependencies (#739)
This commit is contained in:
@@ -1,18 +1,15 @@
|
||||
---
|
||||
import Description from '~/components/Description.astro'
|
||||
import DownloadScript from '~/components/download/DownloadScript.astro'
|
||||
import PlatformDownload from '~/components/download/PlatformDownload.astro'
|
||||
import { getReleasesWithChecksums } from '~/components/download/release-data'
|
||||
import Layout from '~/layouts/Layout.astro'
|
||||
import { getChecksums } from '~/utils/githubChecksums'
|
||||
import { getLocale, getUI } from '~/utils/i18n'
|
||||
|
||||
import { icon, library } from '@fortawesome/fontawesome-svg-core'
|
||||
import { faApple, faGithub, faLinux, faWindows } from '@fortawesome/free-brands-svg-icons'
|
||||
import Image from 'astro/components/Image.astro'
|
||||
|
||||
import AppIconDark from '~/assets/app-icon-dark.png'
|
||||
import AppIconLight from '~/assets/app-icon-light.png'
|
||||
import Description from '~/components/Description.astro'
|
||||
import DownloadScript from '~/components/download/DownloadScript.astro'
|
||||
import PlatformDownload from '~/components/download/PlatformDownload.astro'
|
||||
import { getReleases } from '~/components/download/release-data'
|
||||
import Layout from '~/layouts/Layout.astro'
|
||||
import { getLocale, getUI } from '~/utils/i18n'
|
||||
|
||||
export { getStaticPaths } from '~/utils/i18n'
|
||||
|
||||
@@ -27,8 +24,7 @@ const windowsIcon = icon({ prefix: 'fab', iconName: 'windows' })
|
||||
const linuxIcon = icon({ prefix: 'fab', iconName: 'linux' })
|
||||
const appleIcon = icon({ prefix: 'fab', iconName: 'apple' })
|
||||
|
||||
const checksums = await getChecksums()
|
||||
const releases = getReleasesWithChecksums(locale)(checksums)
|
||||
const releases = getReleases(locale)
|
||||
|
||||
const platformDescriptions = download.platformDescriptions
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user