Skip to content

chore(deps-dev): bump esbuild from 0.24.0 to 0.25.0 #127

chore(deps-dev): bump esbuild from 0.24.0 to 0.25.0

chore(deps-dev): bump esbuild from 0.24.0 to 0.25.0 #127

Workflow file for this run

name: Action
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout GotoCharTimer
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm install
- name: git setup
run: |
git config --global user.email "[email protected]"
git config --global user.name "bot"
- name: Publish to VSCode Marketplace
env:
VSCODE_MARKETPLACE_TOKEN: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }}
run: |
npx vsce publish patch -p $VSCODE_MARKETPLACE_TOKEN
git push origin master
- name: update loc
run: |
sh README.sh > README.md
if [ -n "$(git status --porcelain README.md)" ]; then
git add README.md
git commit -m "Update lines of code in README"
git push origin master
fi