Skip to content

Commit

Permalink
yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
hars-21 committed Jan 24, 2025
1 parent 9ef5fcc commit 7a904bb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,19 +310,21 @@ jobs:
# Run only if the develop-postgres branch and not dependabot
if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.base.ref == 'develop-postgres' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
cache-dependency-path: "docs/"
# Run Docusaurus in the ./docs directory
node-version: "20.x"

- name: Install dependencies
working-directory: ./docs
run: yarn install --frozen-lockfile
run: npm install

- name: Test building the website
working-directory: ./docs
run: yarn build
run: npm run build

Validate-Coderabbit:
name: Validate CodeRabbit Approval
Expand Down

0 comments on commit 7a904bb

Please sign in to comment.