Skip to content

Commit

Permalink
test: fix node dependencies (#223)
Browse files Browse the repository at this point in the history
# What ❔

fix npm issues 

## Why ❔

Conflict in react packages: To resolve build with latest deps first. 

## Checklist


- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
  • Loading branch information
pcheremu committed May 2, 2024
1 parent f17ee1c commit f94339f
Show file tree
Hide file tree
Showing 5 changed files with 32,807 additions and 51,162 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docs-test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
node-version: 20
cache: npm
- name: Install dependencies
working-directory: ./packages/testing-docs
run: npm i
run: npm ci
- name: Build website
working-directory: ./packages/testing-docs
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-actions"
npm i
npm ci
npm run deploy
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
node-version: '18'
cache: 'npm'

- name: Install dependencies
Expand Down
Loading

0 comments on commit f94339f

Please sign in to comment.