Skip to content

Bump web-vitals from 3.4.0 to 3.5.0 in /html #383

Bump web-vitals from 3.4.0 to 3.5.0 in /html

Bump web-vitals from 3.4.0 to 3.5.0 in /html #383

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@v3
- name: Set up Node
uses: actions/setup-node@v3
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 ..