Compare commits

..

3 Commits

Author SHA1 Message Date
gpt-engineer-app[bot]
975c8f786c Refactor: Use npm install in workflow 2025-10-30 17:15:16 +00:00
gpt-engineer-app[bot]
12d33aaebf Update Node.js version 2025-10-30 17:11:42 +00:00
gpt-engineer-app[bot]
e989aecebd feat: Configure workflow to use production environment 2025-10-30 17:07:46 +00:00

View File

@@ -16,6 +16,7 @@ jobs:
preflight: preflight:
name: Validate Environment name: Validate Environment
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: production
steps: steps:
- name: Check Required Secrets - name: Check Required Secrets
run: | run: |
@@ -73,6 +74,7 @@ jobs:
needs: preflight needs: preflight
timeout-minutes: 60 timeout-minutes: 60
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: production
strategy: strategy:
fail-fast: false fail-fast: false
@@ -84,11 +86,11 @@ jobs:
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: 18 node-version: 20
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm install
- name: Install Playwright Browsers - name: Install Playwright Browsers
run: npx playwright install --with-deps ${{ matrix.browser }} run: npx playwright install --with-deps ${{ matrix.browser }}