Skip to content

Commit

Permalink
addition of bun
Browse files Browse the repository at this point in the history
  • Loading branch information
bukhosi-eugene-mpande committed May 31, 2024
1 parent 55a5f27 commit cabaadb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 18.17.0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies for the backend
run: npm install
run: bun install
working-directory: src/server/workspace
- name: Run Backend Tests
run: npm run test
run: bun run test
working-directory: src/server/workspace
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
run: bun install
working-directory: src/client
- name: Install dependencies for the backend
run: npm install
run: bun install
working-directory: src/server/workspace
- name: Run Frontend Linters
run: bun run lint
working-directory: src/client
- name: Run Backend Linters
run: npm run lint
run: bun run lint
working-directory: src/server/workspace
Binary file added src/server/workspace/bun.lockb
Binary file not shown.

0 comments on commit cabaadb

Please sign in to comment.