Skip to content

Commit

Permalink
Merge pull request #5967 from sudhanshutech/gatsby-v5-migration
Browse files Browse the repository at this point in the history
Gatsby v5 migration
  • Loading branch information
sudhanshutech authored Oct 6, 2024
2 parents 9fc86e2 + 125e59a commit 122c8b1
Show file tree
Hide file tree
Showing 289 changed files with 8,932 additions and 8,768 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy-site.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build and Deploy Site
on:
push:
branches: [ master ]
branches: [master]

jobs:
build-and-deploy:
Expand All @@ -12,9 +12,9 @@ jobs:
with:
fetch-depth: 1

- name: Install and Build 🔧
- name: Install and Build 🔧
run: |
npm install
npm install --legacy-peer-deps
npm run build
- name: Deploy 🚀
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/build-and-preview-site.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Build and Preview Site
on:
pull_request:
branches: [ master ]
branches: [master]
types: [opened, synchronize, reopened]


jobs:
site-preview:
runs-on: ubuntu-latest
Expand All @@ -15,9 +14,9 @@ jobs:
persist-credentials: false
fetch-depth: 1

- name: Install and Build 🔧
- name: Install and Build 🔧
run: |
npm install
npm install --legacy-peer-deps
npm run noIndex
- name: Zip Site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 1

- name: NPM Install
run: npm install
run: npm install --legacy-peer-deps

- name: Build
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lighthouseci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 19
- run: npm install && npm install -g @lhci/[email protected]
- run: npm install --legacy-peer-deps && npm install -g @lhci/[email protected]
- run: CI=false npm run build
- run: lhci collect --config=.desktop-lighthouserc.js
- run: lhci assert --config=.desktop-lighthouserc.js
Expand Down
Loading

0 comments on commit 122c8b1

Please sign in to comment.