Skip to content

Commit

Permalink
dx(tools): Use Bun
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWendelborn committed Sep 11, 2023
1 parent 3c7f478 commit bc236b2
Show file tree
Hide file tree
Showing 609 changed files with 84 additions and 23,087 deletions.
1 change: 0 additions & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
exclude_patterns:
- '**/*.test.ts'
- '.yarn/'
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
charset = utf-8
indent_style = tab
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.yml]
indent_style = space
32 changes: 0 additions & 32 deletions .github/workflows/jest.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
- name: Install Dependencies
run: bun install
- name: Test bitwise
run: bun run test
- name: Build bitwise
run: bun run build
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# mirror to .npmignore
/coverage/
/node_modules/
.yarn/*
# .gitignore-only
/build/
!.yarn/cache
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# mirror to .gitignore
/coverage/
/node_modules/
.yarn/*
# .npmignore-only
.codeclimate.yml
.gitignore
tsconfig.json
yarn.lock
bun.lockb
Loading

0 comments on commit bc236b2

Please sign in to comment.