Skip to content

Drop Grunt, switch from UglifyJS to Terser, update actions #8

Drop Grunt, switch from UglifyJS to Terser, update actions

Drop Grunt, switch from UglifyJS to Terser, update actions #8

Workflow file for this run

name: CI
permissions:
contents: read # to fetch code (actions/checkout)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test