We use npm, not yarn in this house
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 1m42s
Build on push / build-webhook (push) Successful in 35s

This commit is contained in:
Lewis Dale 2024-03-07 13:51:48 +00:00
parent 9aaa6f7cb0
commit 4dd43fcf53

View File

@ -13,9 +13,9 @@ jobs:
with: with:
node-version: 20.x node-version: 20.x
- name: Install dependencies 📦 - name: Install dependencies 📦
run: yarn install --frozen-lockfile run: npm ci
- name: Build eleventy - name: Build eleventy
run: yarn build run: npm run build
env: env:
NODE_ENV: production NODE_ENV: production
OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }} OMNIVORE_API_KEY: ${{ secrets.OMNIVORE_API_KEY }}