Skip to content

Build

Build #3

Workflow file for this run

name: Build
on:
workflow_dispatch: {}
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
AUTH0_SECRET: shapeweekend
AUTH0_BASE_URL: http://dev.local:3000
AUTH0_ISSUER_BASE_URL: https://shape-docs-dev.eu.auth0.com
AUTH0_CLIENT_ID: foo
AUTH0_CLIENT_SECRET: shapeweekend
AUTH0_MANAGEMENT_DOMAIN: shape-docs-dev.eu.auth0.com
AUTH0_MANAGEMENT_CLIENT_ID: foo
AUTH0_MANAGEMENT_CLIENT_SECRET: shapeweekend
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build