Skip to content

build(deps-dev): bump micromatch from 4.0.5 to 4.0.8 (#45) #25

build(deps-dev): bump micromatch from 4.0.5 to 4.0.8 (#45)

build(deps-dev): bump micromatch from 4.0.5 to 4.0.8 (#45) #25

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: CI with Node.js
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build
run: grunt less ect
- name: Add label
uses: actions/github-script@v7
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }}
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["automerge"]
})
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.event_name == 'push' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public_html