Skip to content

Commit

Permalink
ci: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maafaishal-tkpd committed Mar 5, 2024
1 parent 06c0371 commit bfac473
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
node-version: ${{ matrix.node_version }}

- name: Update NPM
run: npm install --global npm
run: npm install --global pnpm

- name: Install Dependencies
run: npm ci
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Lint
if: matrix.node_version == '20'
run: npm run lint
run: pnpm run lint

# - name: Run Tests
# run: npm run test-coverage
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/setup-node@v4

- name: Update NPM
run: npm install --global npm
run: npm install --global pnpm

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

- name: Release
env:
Expand Down

0 comments on commit bfac473

Please sign in to comment.