Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @hannahro15 @v-gajjar @NickTheDevOpsGuy
24 changes: 13 additions & 11 deletions .github/workflows/Phuzzle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ name: 🧩 Phuzzle

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- develop
workflow_dispatch:

concurrency:
group: Phuzzle-${{ github.ref }}
Expand Down Expand Up @@ -59,15 +61,15 @@ jobs:

- name: 📦 Bundle size check
env:
BASELINE_REF: origin/${{ github.base_ref }}
BASELINE_REF: origin/${{ github.base_ref || 'develop' }}
CHECK_BUNDLE_USE_EXISTING_DIST: "1"
run: npm run check:bundle

- name: 🧪 Unit tests (Vitest)
run: npm run test

- name: 📤 Upload production build
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: phuzzle-dist
path: dist
Expand All @@ -92,7 +94,7 @@ jobs:
uses: actions/checkout@v6

- name: 🧰 Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: "24"
cache: npm
Expand All @@ -102,7 +104,7 @@ jobs:
run: npm ci

- name: 📥 Download production build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: phuzzle-dist
path: dist
Expand All @@ -115,7 +117,7 @@ jobs:

- name: 📤 Upload Playwright artifacts
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-smoke-artifacts
path: |
Expand All @@ -141,7 +143,7 @@ jobs:
uses: actions/checkout@v6

- name: 🧰 Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: "24"
cache: npm
Expand All @@ -151,7 +153,7 @@ jobs:
run: npm ci

- name: 📥 Download production build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: phuzzle-dist
path: dist
Expand All @@ -164,7 +166,7 @@ jobs:

- name: 📤 Upload Playwright artifacts
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-layout-artifacts
path: |
Expand Down Expand Up @@ -194,7 +196,7 @@ jobs:
uses: actions/checkout@v6

- name: 🧰 Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: "24"
cache: npm
Expand All @@ -204,7 +206,7 @@ jobs:
run: npm ci

- name: 📥 Download production build
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: phuzzle-dist
path: dist
Expand All @@ -216,7 +218,7 @@ jobs:

- name: 📤 Upload Lighthouse reports
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: lhci-reports
path: lhci-reports
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renovate-lockfile-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
false
runs-on: ubuntu-latest
env:
# Opt into Node.js 24 for JavaScript actions (actions/checkout, actions/setup-node)
# Opt into Node.js 24 for JavaScript actions.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0

- name: 🧰 Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: "24"
cache: "npm"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/renovate-patch-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review, labeled]
branches: [develop]
workflow_dispatch:

permissions:
contents: write
Expand Down
Loading