updated
Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 6s

This commit is contained in:
2025-03-15 21:43:20 +01:00
parent 64efafe26f
commit 98d82234a9

View File

@@ -17,10 +17,10 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: 18 node-version: 18
cache: 'yarn' cache: 'npm'
- name: Install Dependencies - name: Install Dependencies
run: yarn install --frozen-lockfile # Use npm install if using npm run: npm install --frozen-lockfile
- name: Build Gatsby Site - name: Build Gatsby Site
run: yarn build # Runs Gatsby's production build run: npm build