Skip to content

Commit

Permalink
Feat/bun (#239)
Browse files Browse the repository at this point in the history
* feat: add bun.lockb

* feat: build-deploy now uses bun
  • Loading branch information
hrgui committed Sep 9, 2023
1 parent 29429c8 commit 0784463
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,24 @@ jobs:
uses: actions/checkout@v3

- name: ⎔ Setup node
uses: actions/setup-node@v3
uses: oven-sh/setup-bun@v1
with:
node-version: 18
bun-version: "1.0.0"

- name: 📥 Download deps
uses: bahmutov/npm-install@v1
run: |
bun install
- name: 🧪 Test
run: |
yarn lint
bun lint
echo "### Test Coverage 🧪 " >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
yarn test --silent --coverage >> $GITHUB_STEP_SUMMARY
bun test --silent --coverage >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
- name: ⚙️ Build
run: yarn build
run: bun build

- name: ⚙️ Setup Pages
if: success()
Expand Down
Binary file added bun.lockb
Binary file not shown.

1 comment on commit 0784463

@vercel
Copy link

@vercel vercel bot commented on 0784463 Sep 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hrgui-github-io – ./

hrgui-github-io-git-develop-hrgui.vercel.app
hrgui-github-io.vercel.app
hrgui-github-io-hrgui.vercel.app

Please sign in to comment.