chore: bump deps #100
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: | |
pull_request: | |
jobs: | |
client: | |
name: Client | |
runs-on: ubuntu-latest | |
concurrency: ci-client-${{ github.ref }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Packages | |
run: bun install --frozen-lockfile | |
- name: Build | |
working-directory: ./client | |
run: bun run build:ci | |
server: | |
name: Server | |
runs-on: ubuntu-latest | |
concurrency: ci-server-${{ github.ref }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Packages | |
run: bun install --frozen-lockfile | |
- name: Build | |
working-directory: ./server | |
run: bun run build |