Skip to content

chore(deps): replace dependency rollup-plugin-terser with @rollup/plugin-terser 0.1.0 #414

chore(deps): replace dependency rollup-plugin-terser with @rollup/plugin-terser 0.1.0

chore(deps): replace dependency rollup-plugin-terser with @rollup/plugin-terser 0.1.0 #414

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://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
env:
URL: http://localhost:5000
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
env:
URL: http://localhost:5000
runs-on:
ubuntu-latest
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
release:
name: semantic-release
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: |
npm ci
npx semantic-release --ci
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}