1.0.12 #672
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] | |
tags: [v*] | |
pull_request: | |
branches: [main] | |
env: | |
CI: true | |
FORCE_COLOR: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
services: | |
mysql: | |
image: mysql:latest | |
env: | |
MYSQL_DATABASE: mysql | |
MYSQL_ROOT_PASSWORD: mysql | |
ports: | |
- 3306:3306 | |
options: >- | |
--health-cmd="mysqladmin ping" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd=pg_isready | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
wsproxy: | |
image: ghcr.io/neondatabase/wsproxy:latest | |
env: | |
APPEND_PORT: postgres:5432 | |
ALLOW_ADDR_REGEX: .* | |
LOG_TRAFFIC: true | |
ports: | |
- 5488:80 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- run: bun install --frozen-lockfile | |
- run: bun tsc | |
- run: bun cycles | |
- run: bun test:bun | |
- run: bun test:node | |
- run: bun test:deno | |
- run: bunx jsr publish --config jsr.json --dry-run | |
publishNPM: | |
runs-on: ubuntu-latest | |
needs: ci | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install --frozen-lockfile | |
- run: | | |
npm config set //registry.npmjs.org/:_authToken ${{secrets.NPM_AUTH_TOKEN}} | |
npm publish | |
publishJSR: | |
runs-on: ubuntu-latest | |
needs: ci | |
permissions: | |
contents: read | |
id-token: write | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install --frozen-lockfile | |
- run: bunx jsr publish --config jsr.json |