Skip to content

Bump cookie and express in /html #597

Bump cookie and express in /html

Bump cookie and express in /html #597

Workflow file for this run

# This workflow will install node dependencies, build, and run tests
name: html-build
on:
push:
paths:
- 'html/**'
- '.github/**'
pull_request:
paths:
- 'html/**'
- '.github/**'
permissions:
contents: read
jobs:
html-build:
runs-on: ubuntu-latest
if: >
github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: '16'
- name: Install Node dependencies
run: |
cd html
npm ci
cd ..
- name: Build Javascript
run: |
cd html
npm run build
cd ..
- name: Test JavaScript
run: |
cd html
npm test
cd ..