Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2292aa6d7f |
@@ -7,7 +7,7 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- 'Dockerfile.ci-base'
|
- 'Dockerfile.ci-base'
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
- 'bun.lock'
|
- 'bun.lockb'
|
||||||
- '.gitea/workflows/build-ci-images.yml'
|
- '.gitea/workflows/build-ci-images.yml'
|
||||||
schedule:
|
schedule:
|
||||||
# Weekly rebuild to get latest Playwright/Bun versions
|
# Weekly rebuild to get latest Playwright/Bun versions
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
## [0.1.13] - 2026-04-27
|
|
||||||
|
|
||||||
### Patch Changes
|
|
||||||
|
|
||||||
- ci: update Playwright to v1.59.1 in CI base image
|
|
||||||
|
|
||||||
## [0.1.12] - 2026-04-27
|
## [0.1.12] - 2026-04-27
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
# Used for Gitea Actions CI workflows
|
# Used for Gitea Actions CI workflows
|
||||||
# Uses Microsoft Playwright image as base (Ubuntu-based) with Bun added
|
# Uses Microsoft Playwright image as base (Ubuntu-based) with Bun added
|
||||||
|
|
||||||
FROM mcr.microsoft.com/playwright:v1.59.1-jammy AS base
|
FROM mcr.microsoft.com/playwright:v1.58.0-jammy AS base
|
||||||
|
|
||||||
# Install unzip (required for Bun installation) and other tools
|
# Install unzip (required for Bun installation) and other tools
|
||||||
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
|
||||||
|
|||||||
@@ -29,6 +29,12 @@ Given('I am on the login page', async function () {
|
|||||||
await world.page.waitForLoadState('domcontentloaded');
|
await world.page.waitForLoadState('domcontentloaded');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Given('I am on the password reset page', async function () {
|
||||||
|
console.log('🌍 Navigating to password reset page');
|
||||||
|
await world.page.goto(`${world.baseURL}/auth/password-reset`);
|
||||||
|
await world.page.waitForLoadState('domcontentloaded');
|
||||||
|
});
|
||||||
|
|
||||||
Given('I am on the {string} page', async function (pageName: string) {
|
Given('I am on the {string} page', async function (pageName: string) {
|
||||||
const pageUrls: Record<string, string> = {
|
const pageUrls: Record<string, string> = {
|
||||||
'home': '/',
|
'home': '/',
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "euchre_camp",
|
"name": "euchre_camp",
|
||||||
"version": "0.1.13",
|
"version": "0.1.12",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user