Skip to content

Commit

Permalink
Project was set up for npm rather than yarn.
Browse files Browse the repository at this point in the history
  • Loading branch information
smallsaucepan committed Oct 2, 2024
1 parent 3a55e03 commit b27ee7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --frozen-lockfile
- name: Test build website
run: yarn build
run: npm build
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --frozen-lockfile
- name: Build website
run: yarn build
run: npm build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit b27ee7b

Please sign in to comment.