Skip to content

chore(deps-dev): bump rollup from 4.12.0 to 4.17.2 #152

chore(deps-dev): bump rollup from 4.12.0 to 4.17.2

chore(deps-dev): bump rollup from 4.12.0 to 4.17.2 #152

Workflow file for this run

name: Build And Upload Extension Zip Via Artifact
on:
push:
branches:
- main
- test
# Sequence of patterns matched against refs/tags
tags:
- v*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
- uses: pnpm/action-setup@v2
- run: pnpm install --frozen-lockfile
- run: pnpm build
- uses: actions/upload-artifact@v3
with:
path: dist/*
- name: Create Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}