Skip to content

Commit

Permalink
Use 'npm' instead of 'yarn' for GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Aitor Iturrioz <[email protected]>
  • Loading branch information
bodiroga committed Jun 9, 2024
1 parent ad61827 commit ca3d5c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache: npm

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci

- name: Build website
run: yarn build
run: npm run build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache: npm

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci

- name: Test build website
run: yarn build
run: npm run build

0 comments on commit ca3d5c6

Please sign in to comment.