Skip to content

chore(consent): add debug logging around CookieConsent.run #5

chore(consent): add debug logging around CookieConsent.run

chore(consent): add debug logging around CookieConsent.run #5

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*"
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun run typecheck
- run: bun test
- run: bun run build
- name: Configure npm auth for GitHub Packages
run: |
cat > ~/.npmrc <<EOF
@prudai:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}
EOF
- run: npm publish