Skip to content

Commit 494d7fc

Browse files
committed
fix: change how runtime is set
1 parent 11f37f4 commit 494d7fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/bun-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: oven-sh/setup-bun@v2
1313
- name: Set runtime
14-
run: echo "RUNTIME=bun"
14+
run: RUNTIME=bun
1515
- name: Install modules
1616
run: bun install --frozen-lockfile
1717
- name: Build

.github/workflows/nodejs-automated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version: 22
2525
cache: 'npm'
2626
- name: Set runtime
27-
run: echo "RUNTIME=node"
27+
run: RUNTIME=node
2828
- run: npm ci
2929
- run: npm run build
3030
- run: npm test

.github/workflows/nodejs-e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: ${{ matrix.node-version }}
1919
cache: 'npm'
2020
- name: Set runtime
21-
run: echo "RUNTIME=node"
21+
run: RUNTIME=node
2222
- name: Install modules
2323
run: npm ci
2424
- name: Build

0 commit comments

Comments
 (0)