Skip to content

Commit b77512e

Browse files
authored
fix: fixes an issue where the runtime was not working with pnpm package manager (#96)
1 parent 97f93cb commit b77512e

25 files changed

+4754
-3570
lines changed

.github/actions/pnpm/action.yaml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: 'Setup PNPM'
2+
description: Setup PNPM with Node.js and caching of the workspace
3+
runs:
4+
using: 'composite'
5+
steps:
6+
- name: Install Node.js
7+
uses: actions/setup-node@v3
8+
with:
9+
node-version: 18
10+
11+
- uses: pnpm/action-setup@v2
12+
name: Install PNPM
13+
id: pnpm-install
14+
with:
15+
version: 8
16+
run_install: false
17+
18+
- name: Get pnpm store directory
19+
id: pnpm-cache
20+
shell: bash
21+
run: |
22+
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
23+
24+
- uses: actions/cache@v3
25+
name: Setup pnpm cache
26+
with:
27+
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
28+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
29+
restore-keys: |
30+
${{ runner.os }}-pnpm-store-
31+
32+
- name: Install dependencies
33+
shell: bash
34+
run: pnpm install

.github/workflows/pre-release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
--allow-same-version
4545
- name: Push changes
4646
run: git push --follow-tags
47+
- name: build
48+
run: npm run build
4749
- name: Run npm publish
4850
run: npm publish --tag=${{ steps.extract.outputs.tag }}
4951
env:

.github/workflows/release-please.yml

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
- name: Install dependencies
3131
run: CI=1 npm ci
3232
if: ${{ steps.release.outputs.release_created }}
33+
- name: Build
34+
run: npm run build
35+
if: ${{ steps.release.outputs.release_created }}
3336
- run: npm publish
3437
if: ${{ steps.release.outputs.release_created }}
3538
env:

.github/workflows/run-tests.yml

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
node-version: '18.x'
1515
cache: 'npm'
1616
cache-dependency-path: '**/package-lock.json'
17+
- uses: oven-sh/setup-bun@v1
18+
- name: Setup PNPM
19+
uses: ./.github/actions/pnpm
1720
- name: 'Install dependencies'
1821
run: npm ci
1922
- name: 'Netlify Login'
@@ -59,6 +62,8 @@ jobs:
5962
node-version: '18.x'
6063
cache: 'npm'
6164
cache-dependency-path: '**/package-lock.json'
65+
- name: Setup PNPM
66+
uses: ./.github/actions/pnpm
6267
- name: Install Deno
6368
uses: denoland/setup-deno@v1
6469
with:

0 commit comments

Comments
 (0)