Skip to content

Bump cookie and express #169

Bump cookie and express

Bump cookie and express #169

Workflow file for this run

# Copyright (c) Laserfiche.
# Licensed under the MIT License. See LICENSE in the project root for license information.
name: lf-sample-OAuth-SPA-react-CI
on:
push:
branches: [ '\d+.x' ]
pull_request:
branches: [ '\d+.x' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Npm ci
run: npm ci
- name: Npm lint
run: npm run lint
- name: npm run build
run: npm run build