Skip to content

fix: htmlmin deletes inlinejs filebundle, causing a js error #33

fix: htmlmin deletes inlinejs filebundle, causing a js error

fix: htmlmin deletes inlinejs filebundle, causing a js error #33

Workflow file for this run

name: Test
on:
push:
branches:
- master
paths:
- '**.js'
# Allows this workflow to be called from other workflows.
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run-linters:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Node.js dependencies
run: npm ci
- name: Run tests
run: npm run test