Skip to content

Commit 125848f

Browse files
committed
Merge branch 'dev'
2 parents fff1367 + 4592527 commit 125848f

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,23 +59,21 @@ jobs:
5959
strategy:
6060
matrix:
6161
os: [ubuntu-latest]
62-
node: [16]
63-
packager: [npm]
62+
bun: [1.0.x]
6463

6564
runs-on: ${{ matrix.os }}
6665

6766
steps:
6867
- uses: actions/checkout@v3
69-
- name: Set up Node
68+
- name: Set up Bun
7069
id: setup
71-
uses: actions/setup-node@v3
70+
uses: oven-sh/setup-bun@v1
7271
with:
73-
node-version: ${{ matrix.node }}
74-
cache: ${{ matrix.packager }}
72+
bun-version: ${{ matrix.bun }}
7573
- name: Install Dependencies
76-
run: npm ci
74+
run: bun i
7775
- name: Build Resources
78-
run: npm run build
76+
run: bun run build
7977
- name: Publish to NPM
8078
uses: JS-DevTools/npm-publish@v1
8179
with:

0 commit comments

Comments
 (0)