Skip to content

fix: remove k6 test from CI (needs k6 binary), fix README repo URL #6

fix: remove k6 test from CI (needs k6 binary), fix README repo URL

fix: remove k6 test from CI (needs k6 binary), fix README repo URL #6

Workflow file for this run

name: Publish
on:
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
ports: [6379:6379]
postgres:
image: postgres:16-alpine
ports: [5432:5432]
env:
POSTGRES_DB: psyqueue_test
POSTGRES_USER: psyqueue
POSTGRES_PASSWORD: psyqueue
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
- name: Release with Bumpcraft
run: npx bumpcraft release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}