Skip to content

feat(auth0-express): migration stores for express-openid-connect migration #163

feat(auth0-express): migration stores for express-openid-connect migration

feat(auth0-express): migration stores for express-openid-connect migration #163

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main, dev]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:
strategy:
matrix:
node: [ 22, 24 ]
name: Build Package
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node.js with npm caching
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node }}
package-manager-cache: false
- name: Update npm
run: npm install -g npm@11.10.0
- name: Install dependencies
run: npm install
- name: Build auth0-express
run: npm run build -w @auth0/auth0-express
- name: Build auth0-express-api
run: npm run build -w @auth0/auth0-express-api
- name: Test auth0-express
run: npm run test:ci -w @auth0/auth0-express
- name: Test auth0-express-api
run: npm run test:ci -w @auth0/auth0-express-api
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Node.js with npm caching
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
package-manager-cache: false
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm install
- name: Lint @auth0/auth0-express
run: npm run lint -w @auth0/auth0-express
- name: Lint @auth0/auth0-express-api
run: npm run lint -w @auth0/auth0-express-api