feature/issue 953 support for Bun #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration - Bun | |
on: | |
pull_request: | |
branches: master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v2 | |
# still using Yarn since we specifically rely on Yarn workspaces | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile && yarn lerna bootstrap | |
- name: Test | |
run: bun run --bun test:bun | |
- name: Build | |
run: bun run --bun build |