feat: add possibility to disable signOut endpoint for local provider … #790
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: nodejs CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test-module: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
# Install deps and prepare types | |
- run: pnpm i | |
- run: pnpm dev:prepare | |
# Check if build and package artifacts can still be generated | |
- run: pnpm prepack | |
# Check linting and typing | |
- run: pnpm lint | |
- run: pnpm typecheck | |
# Check building | |
- run: pnpm build | |
test-playground-local: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./playground-local | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
# Install deps | |
- run: pnpm i | |
# Check building | |
- run: pnpm build | |
# start prod-app and curl from it | |
- run: "timeout 60 pnpm start & (sleep 45 && curl --fail localhost:3000)" | |
test-playground-authjs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./playground-authjs | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
# Install deps | |
- run: pnpm i | |
# Check building | |
- run: pnpm build | |
# start prod-app and curl from it | |
- run: "timeout 60 pnpm start & (sleep 45 && curl --fail localhost:$PORT)" | |
env: | |
AUTH_ORIGIN: 'http://localhost:3001' | |
PORT: 3001 |