remove playwright-report

This commit is contained in:
2026-03-31 14:50:16 -07:00
parent 1bbca1f5c1
commit e4ce124326
3 changed files with 9 additions and 85 deletions
+1
View File
@@ -50,3 +50,4 @@ next-env.d.ts
*.db-journal
prisma/dev.db*
prisma/prisma/dev.db*
playwright-report/
File diff suppressed because one or more lines are too long
+8
View File
@@ -0,0 +1,8 @@
const { execSync } = require('child_process');
try {
const commitHash = execSync('git rev-parse --short HEAD').toString().trim();
console.log(commitHash);
} catch (error) {
console.log('unknown');
}