Skip to content

Commit e8cffe6

Browse files
committed
fix: change how RUNTIME is set
1 parent 494d7fc commit e8cffe6

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212
- uses: oven-sh/setup-bun@v2
13-
- name: Set runtime
14-
run: RUNTIME=bun
1513
- name: Install modules
1614
run: bun install --frozen-lockfile
1715
- name: Build
1816
run: bun run build
1917
- name: Prepare e2e tests
20-
run: bun run pre-test
18+
run: RUNTIME=bun bun run pre-test
2119
- name: Run e2e tests
2220
run: bun run test:e2e
2321
- name: Clean up

.github/workflows/nodejs-automated.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
with:
2424
node-version: 22
2525
cache: 'npm'
26-
- name: Set runtime
27-
run: RUNTIME=node
2826
- run: npm ci
2927
- run: npm run build
3028
- run: npm test

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
with:
1818
node-version: ${{ matrix.node-version }}
1919
cache: 'npm'
20-
- name: Set runtime
21-
run: RUNTIME=node
2220
- name: Install modules
2321
run: npm ci
2422
- name: Build

0 commit comments

Comments
 (0)