Skip to content

Include license and version information in web bundles #120

Include license and version information in web bundles

Include license and version information in web bundles #120

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Build npm package
run: npm run prepublishOnly
- name: Test
run: npm test