Skip to content

Commit

Permalink
Test commit 4
Browse files Browse the repository at this point in the history
  • Loading branch information
phapsidesGT committed Sep 3, 2024
1 parent 3d6b968 commit 9544e61
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
20 changes: 15 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ jobs:
name: Lighthouse CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3 # Checkout code; no need for Node version specification here

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Explicitly set Node.js version to 20

- name: Run Lighthouse CI
uses: shopify/lighthouse-ci-action@v1
with:
Expand All @@ -25,7 +30,12 @@ jobs:
name: Theme Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3 # Checkout code; no need for Node version specification here

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Explicitly set Node.js version to 20

- name: Run Theme Check
uses: shopify/theme-check-action@v1
Expand All @@ -37,12 +47,12 @@ jobs:
runs-on: ubuntu-latest
needs: [lhci, theme-check] # Ensure deployment runs after Lighthouse and Theme Check
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3 # Checkout code; no need for Node version specification here

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '20' # Explicitly set Node.js version to 20

- name: Install Shopify CLI
run: npm install -g @shopify/cli @shopify/theme
Expand Down

0 comments on commit 9544e61

Please sign in to comment.