2 Commits

Author SHA1 Message Date
Gitea Actions d8fb1b20d2 chore: bump version to v0.1.13 2026-04-27 03:57:11 +00:00
david 58e319d8e3 ci: update Playwright to v1.59.1 in CI base image
Build CI Images / build-ci-base (push) Failing after 18s
Release / release (push) Failing after 11s
2026-04-26 20:56:18 -07:00
5 changed files with 9 additions and 39 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
paths: paths:
- 'Dockerfile.ci-base' - 'Dockerfile.ci-base'
- 'package.json' - 'package.json'
- 'bun.lockb' - 'bun.lock'
- '.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
+6
View File
@@ -1,3 +1,9 @@
## [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
View File
@@ -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.58.0-jammy AS base FROM mcr.microsoft.com/playwright:v1.59.1-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/*
@@ -599,39 +599,3 @@ Then('I should see the rankings table', async function () {
await expect(world.page.locator('table')).toBeVisible(); await expect(world.page.locator('table')).toBeVisible();
console.log('🌍 Verified rankings table is visible'); console.log('🌍 Verified rankings table is visible');
}); });
// Tournament Schedule Steps
Then('I should see round {int} matchups', async function (roundNumber: number) {
const roundText = `Round ${roundNumber}`;
await expect(world.page.locator(`text=${roundText}`)).toBeVisible();
console.log(`🌍 Verified round ${roundNumber} matchups are visible`);
});
Then('I should see a bye round for one team', async function () {
const content = await world.page.content();
const hasBye = content.toLowerCase().includes('bye');
expect(hasBye).toBe(true);
console.log('🌍 Verified bye round is visible');
});
Then('each team should play every other team exactly once', async function () {
// This is a complex verification that would require counting matchups
// For now, just verify that the schedule was generated
const content = await world.page.content();
expect(content).toMatch(/schedule|round|matchup/i);
console.log('🌍 Verified schedule exists with matchups');
});
When('I click on a matchup', async function () {
// Click on the first matchup element
const matchup = world.page.locator('[data-testid="matchup"], .matchup, a[href*="/matches/"]').first();
await matchup.click();
await world.page.waitForLoadState('domcontentloaded');
console.log('🌍 Clicked on matchup');
});
Then('I should be on the match result entry page', async function () {
const currentUrl = world.page.url();
console.log(`🌍 Checking current URL: ${currentUrl}`);
expect(currentUrl).toMatch(/\/matches\/|\/admin\/tournaments\/\d+\/results/);
});
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "euchre_camp", "name": "euchre_camp",
"version": "0.1.12", "version": "0.1.13",
"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",