Skip to content

feat(auth0-server-js): Add concrete store implementations that depend on a CookieHandler #102

feat(auth0-server-js): Add concrete store implementations that depend on a CookieHandler

feat(auth0-server-js): Add concrete store implementations that depend on a CookieHandler #102

Workflow file for this run

name: Build and Test
on:
merge_group:
workflow_dispatch:
pull_request:
branches: [main, early-access]
push:
branches: [main, early-access]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
CACHE_KEY: "${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}"
jobs:
test:
strategy:
matrix:
node: [ 20, 22 ]
name: Build Package
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js with npm caching
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build auth0-auth-js
run: npm run build -w @auth0/auth0-auth-js
- name: Build auth0-server-js
run: npm run build -w @auth0/auth0-server-js
- name: Build @auth0/auth0-api-js
run: npm run build -w @auth0/auth0-api-js
- name: Test auth0-auth-js
run: npm run test:ci -w @auth0/auth0-auth-js
- name: Test auth0-server-js
run: npm run test:ci -w @auth0/auth0-server-js
- name: Test @auth0/auth0-api-js
run: npm run test:ci -w @auth0/auth0-api-js
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js with npm caching
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Run @auth0/auth0-auth-js
run: npm run lint -w @auth0/auth0-auth-js
- name: Run @auth0/auth0-server-js
run: npm run lint -w @auth0/auth0-server-js
- name: Lint @auth0/auth0-api-js
run: npm run lint -w @auth0/auth0-api-js