Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fokolo committed Nov 25, 2024
1 parent 5a739b4 commit c7cf962
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache-dependency-path: docs/site/yarn.lock
cache: npm
cache-dependency-path: docs/site/package-lock.json

- name: Install dependencies
working-directory: docs/site
run: yarn install --frozen-lockfile
run: npm ci
- name: Build website
working-directory: docs/site
run: yarn build
run: npm run build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
cache-dependency-path: docs/site/yarn.lock
cache: npm
cache-dependency-path: docs/site/package-lock.json

- name: Install dependencies
working-directory: docs/site
run: yarn install --frozen-lockfile
run: npm ci
- name: Test build website
working-directory: docs/site
run: yarn build
run: npm run build

0 comments on commit c7cf962

Please sign in to comment.