Skip to content

🔖 Update version to 2.14.0 #3268

🔖 Update version to 2.14.0

🔖 Update version to 2.14.0 #3268

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
strategy:
matrix:
os: [ubuntu-latest]
name: Build (Bun on ${{ matrix.os }})
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
timeout-minutes: 8
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 🛎 Checkout
uses: actions/checkout@v4
- name: 📦 Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: 👨🏻‍💻 Install dependencies
run: bun install --frozen-lockfile
- name: 🐣 Run build
run: bun turbo build --filter !api
env:
PUBLIC_GA4_MEASUREMENT_ID: ${{ secrets.PUBLIC_GA4_MEASUREMENT_ID }}
PUBLIC_SUPABASE_URL: ${{ secrets.PUBLIC_SUPABASE_URL }}
PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.PUBLIC_SUPABASE_ANON_KEY }}
- name: 👀 Run lint
run: bun lint
- name: 🧪 Run test
run: bun turbo test --filter !api