Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/bun #239

Merged
merged 2 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.