docs: handle nullable Session #12106
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: Release | |
on: | |
push: | |
branches: | |
- main | |
- beta | |
- next | |
- 3.x | |
pull_request: | |
# TODO: Support latest releases | |
workflow_dispatch: | |
inputs: | |
name: | |
type: choice | |
description: Package name (npm) | |
options: | |
- "next-auth" | |
- "@auth/core" | |
- "@auth/express" | |
- "@auth/nuxt" | |
- "@auth/qwik" | |
- "@auth/solid-start" | |
- "@auth/sveltekit" | |
- "@auth/azure-tables-adapter" | |
- "@auth/d1-adapter" | |
- "@auth/dgraph-adapter" | |
- "@auth/drizzle-adapter" | |
- "@auth/dynamodb-adapter" | |
- "@auth/edgedb-adapter" | |
- "@auth/fauna-adapter" | |
- "@auth/firebase-adapter" | |
- "@auth/hasura-adapter" | |
- "@auth/kysely-adapter" | |
- "@auth/mikro-orm-adapter" | |
- "@auth/mongodb-adapter" | |
- "@auth/neo4j-adapter" | |
- "@auth/pg-adapter" | |
- "@auth/pouchdb-adapter" | |
- "@auth/prisma-adapter" | |
- "@auth/sequelize-adapter" | |
- "@auth/supabase-adapter" | |
- "@auth/surrealdb-adapter" | |
- "@auth/test-adapter" | |
- "@auth/typeorm-adapter" | |
- "@auth/typeorm-legacy-adapter" | |
- "@auth/unstorage-adapter" | |
- "@auth/upstash-redis-adapter" | |
- "@auth/xata-adapter" | |
permissions: | |
id-token: write | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
FORCE_COLOR: true | |
NPM_CONFIG_PROVENANCE: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Init | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Peek | |
run: pnpm peek | |
if: ${{ github.repository == 'nextauthjs/next-auth' && github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
- name: Get base commit SHA from main | |
id: get_base_sha | |
run: echo "BASE_SHA=$(git merge-base origin/main HEAD)" >> $GITHUB_ENV | |
- name: Check for changes under /packages | |
id: check-packages | |
run: | | |
if git diff --name-only ${{ env.BASE_SHA }}...HEAD | grep '^packages/'; then | |
echo "PACKAGES_CHANGES=true" >> $GITHUB_ENV | |
else | |
echo "PACKAGES_CHANGES=false" >> $GITHUB_ENV | |
fi | |
- name: Build | |
if: ${{ env.PACKAGES_CHANGES == 'true' || github.ref == 'refs/heads/main' }} | |
run: pnpm build | |
- name: Check formatting | |
run: pnpm format | |
timeout-minutes: 15 | |
- name: Run unit tests | |
if: ${{ env.PACKAGES_CHANGES == 'true' || github.ref == 'refs/heads/main' }} | |
run: pnpm test | |
- name: Install Playwright | |
if: github.repository == 'nextauthjs/next-auth' | |
run: pnpm exec playwright install --with-deps chromium | |
- name: Run E2E tests (Nextjs-Docker) | |
continue-on-error: true | |
if: false | |
timeout-minutes: 15 | |
run: cd apps/examples/nextjs-docker && pnpm test:docker | |
- name: Run E2E tests | |
continue-on-error: true # TODO: Make this less flakey | |
if: github.repository == 'nextauthjs/next-auth' | |
timeout-minutes: 15 | |
env: | |
AUTH_SECRET: ${{ secrets.AUTH_SECRET }} | |
TEST_KEYCLOAK_USERNAME: ${{ secrets.TEST_KEYCLOAK_USERNAME }} | |
TEST_KEYCLOAK_PASSWORD: ${{ secrets.TEST_KEYCLOAK_PASSWORD }} | |
AUTH_KEYCLOAK_ID: ${{ secrets.AUTH_KEYCLOAK_ID }} | |
AUTH_KEYCLOAK_SECRET: ${{ secrets.AUTH_KEYCLOAK_SECRET }} | |
AUTH_KEYCLOAK_ISSUER: ${{ secrets.AUTH_KEYCLOAK_ISSUER }} | |
AUTH_TRUST_HOST: 1 | |
DEBUG: "pw:webserver" | |
run: pnpm test:e2e | |
- uses: actions/upload-artifact@v4 | |
name: Upload Playwright artifacts | |
with: | |
name: playwright-traces | |
path: "**/packages/next-auth/test-results/*/trace.zip" | |
retention-days: 7 | |
- uses: codecov/codecov-action@v4 | |
if: always() | |
name: Coverage | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
release-branch: | |
name: Publish branch | |
timeout-minutes: 120 | |
runs-on: ubuntu-latest | |
needs: test | |
if: ${{ github.event_name == 'push' }} | |
environment: Production | |
steps: | |
- name: Init | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Please upvote https://github.com/orgs/community/discussions/13836 | |
token: ${{ secrets.GH_PAT }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Publish to npm and GitHub | |
run: pnpm release | |
env: | |
# Please upvote https://github.com/orgs/community/discussions/13836 | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
release-pr: | |
name: Publish PR | |
timeout-minutes: 120 | |
runs-on: ubuntu-latest | |
needs: test | |
if: ${{ github.event_name == 'pull_request' }} | |
environment: Preview | |
steps: | |
- name: Init | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Determine version | |
uses: ./.github/version-pr | |
id: determine-version | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
- name: Publish to npm | |
run: | | |
cd packages/core | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
pnpm publish --no-git-checks --access public --tag experimental | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Comment version on PR | |
uses: NejcZdovc/comment-pr@v2 | |
with: | |
message: | |
"🎉 Experimental release [published 📦️ on npm](https://npmjs.com/package/@auth/core/v/${{ env.VERSION }})!\n \ | |
```sh\npnpm add @auth/core@${{ env.VERSION }}\n```\n \ | |
```sh\nyarn add @auth/core@${{ env.VERSION }}\n```\n \ | |
```sh\nnpm i @auth/core@${{ env.VERSION }}\n```" | |
env: | |
VERSION: ${{ steps.determine-version.outputs.version }} | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
release-manual: | |
name: Publish manually | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
steps: | |
- name: Init | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Map package name to path | |
run: | | |
case "${{ github.event.inputs.name }}" in | |
*"-adapter") | |
adapter_name=$(echo "${{ github.event.inputs.name }}" | sed 's/@auth\///' | sed 's/-adapter//') | |
echo "PACKAGE_PATH=adapter-${adapter_name}" >> $GITHUB_ENV | |
;; | |
"next-auth") | |
echo "PACKAGE_PATH=next-auth" >> $GITHUB_ENV | |
;; | |
"@auth/core") | |
echo "PACKAGE_PATH=core" >> $GITHUB_ENV | |
;; | |
*) | |
framework_name=$(echo "${{ github.event.inputs.name }}" | sed 's/@auth\///') | |
echo "PACKAGE_PATH=frameworks-${framework_name}" >> $GITHUB_ENV | |
;; | |
esac | |
- name: Determine version | |
uses: ./.github/version-pr | |
id: determine-version | |
env: | |
PACKAGE_PATH: ${{ env.PACKAGE_PATH }} | |
- name: Publish to npm | |
run: | | |
pnpm build | |
cd packages/$PACKAGE_PATH | |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc | |
pnpm publish --no-git-checks --access public --tag experimental | |
echo "🎉 Experimental release published 📦️ on npm: https://npmjs.com/package/${{ github.event.inputs.name }}/v/${{ env.VERSION }}" | |
echo "Install via: pnpm add ${{ github.event.inputs.name }}@${{ env.VERSION }}" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
PACKAGE_PATH: ${{ env.PACKAGE_PATH }} | |
VERSION: ${{ steps.determine-version.outputs.version }} |