update
Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 1m10s

This commit is contained in:
2025-03-15 23:08:02 +01:00
parent adb7fd16af
commit cb47a5289d
2 changed files with 17 additions and 6 deletions

View File

@@ -18,13 +18,18 @@ jobs:
with:
node-version: 18
- name: Clear node_modules and package-lock
run: |
rm -rf node_modules
rm -f package-lock.json
- name: Install Dependencies
run: |
npm install --legacy-peer-deps
npm install -g gatsby-cli
npm install -g gatsby-cli@5.12.12
- name: Clean Gatsby cache
run: gatsby clean
run: npm run clean
- name: Build Gatsby Site
run: |

View File

@@ -13,13 +13,19 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"yet-another-react-lightbox": "^3.15.6"
"yet-another-react-lightbox": "^3.15.6",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write '**/*.js'",
@@ -28,8 +34,8 @@
"devDependencies": {
"prettier": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
"resolutions": {
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0"
}
}