Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlovdog committed Nov 28, 2024
1 parent e2c1bbf commit 433dfc8
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ description: "Prepare repository and all dependencies"
runs:
using: "composite"
steps:
- name: Setup pnpm
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
node-version: 20
version: 9.14.2

version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
shell: bash
run: pnpm install --ignore-scripts
run: pnpm install

0 comments on commit 433dfc8

Please sign in to comment.