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: with:
node-version: 18 node-version: 18
- name: Clear node_modules and package-lock
run: |
rm -rf node_modules
rm -f package-lock.json
- name: Install Dependencies - name: Install Dependencies
run: | run: |
npm install --legacy-peer-deps npm install --legacy-peer-deps
npm install -g gatsby-cli npm install -g gatsby-cli@5.12.12
- name: Clean Gatsby cache - name: Clean Gatsby cache
run: gatsby clean run: npm run clean
- name: Build Gatsby Site - name: Build Gatsby Site
run: | run: |

View File

@@ -13,13 +13,19 @@
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-helmet": "^6.1.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": [ "keywords": [
"gatsby" "gatsby"
], ],
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"clean": "gatsby clean",
"build": "gatsby build", "build": "gatsby build",
"develop": "gatsby develop", "develop": "gatsby develop",
"format": "prettier --write '**/*.js'", "format": "prettier --write '**/*.js'",
@@ -28,8 +34,8 @@
"devDependencies": { "devDependencies": {
"prettier": "^3.1.0" "prettier": "^3.1.0"
}, },
"repository": { "resolutions": {
"type": "git", "ajv": "^8.12.0",
"url": "https://github.com/gatsbyjs/gatsby-starter-default" "ajv-keywords": "^5.1.0"
} }
} }