Skip to content

Commit

Permalink
Configure pnpm on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rindrics committed Jun 24, 2024
1 parent cc9a3bc commit 6977221
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/check-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ jobs:
with:
sparse-checkout: ${{ env.WORKING_DIRECTORY }}

- name: Install pnpm
run: npm install -g pnpm

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
working-directory: ${{ env.WORKING_DIRECTORY }}

- name: Lint & format
run: |
make check
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ package
.log/
node_modules
coverage
.tool-versions
1 change: 1 addition & 0 deletions core/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.15

0 comments on commit 6977221

Please sign in to comment.