Skip to content

chore(deps): update dependency ultracite to v7.9.0 (#67) #233

chore(deps): update dependency ultracite to v7.9.0 (#67)

chore(deps): update dependency ultracite to v7.9.0 (#67) #233

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
task: [lint, typecheck, test, build]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
restore-keys: bun-${{ runner.os }}-
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
if: matrix.task == 'build'
with:
path: .next/cache
key: nextjs-${{ runner.os }}-${{ hashFiles('bun.lock') }}-${{ hashFiles('src/**', 'convex/**', 'messages/**') }}
restore-keys: nextjs-${{ runner.os }}-${{ hashFiles('bun.lock') }}-
- run: bun install --frozen-lockfile
env:
HUSKY: "0"
- run: bun run ${{ matrix.task }}
env:
NEXT_PUBLIC_CONVEX_URL: ${{ matrix.task == 'build' && 'https://stub.convex.cloud' || '' }}
NEXT_PUBLIC_CONVEX_SITE_URL: ${{ matrix.task == 'build' && 'https://stub.convex.site' || '' }}
NEXT_PUBLIC_WORKOS_REDIRECT_URI: ${{ matrix.task == 'build' && 'https://stub.example.com/callback' || '' }}
version:
name: Release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: [check]
permissions:
contents: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.bun/install/cache
key: bun-${{ runner.os }}-${{ hashFiles('bun.lock') }}
restore-keys: bun-${{ runner.os }}-
- run: bun install --frozen-lockfile
env:
HUSKY: "0"
- name: Semantic Release
run: bunx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}