Skip to content

fixed next month function #25

fixed next month function

fixed next month function #25

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run Gulp Build
run: npm run build
- name: Commit and push minified files
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add ./dist
git diff --cached --quiet || (git commit -m 'Update dist folder with latest build artifacts' && git push origin master)
git clean -fd