Skip to content

Bump terser from 5.49.0 to 5.49.2 #1256

Bump terser from 5.49.0 to 5.49.2

Bump terser from 5.49.0 to 5.49.2 #1256

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "22"
package-manager-cache: false
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test-ci
- name: Make a production build
run: npm run build:production