Luisotee/messaging #99
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install | |
- name: Setup config | |
run: | | |
cp config.example.yaml config.yaml | |
bun run build:config | |
- name: Build remaining packages | |
run: turbo run build --filter=!@eda/config --filter=!@eda/config-python | |
# - name: Run tests | |
# run: bun run test |