Skip to content

Bump terser from 4.8.0 to 4.8.1 #44

Bump terser from 4.8.0 to 4.8.1

Bump terser from 4.8.0 to 4.8.1 #44

Workflow file for this run

name: ci
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Build
run: |
npm install
npm run build
- name: Deploy to gh-pages
if: ${{ github.event_name == 'push' }}
run: |
git config --global user.name thegecko
git config --global user.email [email protected]
git add --force dist types docs
git stash save
git checkout gh-pages
git merge master --no-commit -X theirs
git checkout stash -- .
git commit --allow-empty --message "Automatic Deployment"
git push