Skip to content

Bump grunt-cli from 1.4.3 to 1.5.0 #249

Bump grunt-cli from 1.4.3 to 1.5.0

Bump grunt-cli from 1.4.3 to 1.5.0 #249

Workflow file for this run

name: CI (Grunt)
on:
push:
workflow_dispatch:
concurrency:
group: ci-grunt-${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: "18"
jobs:
build:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
name: Run Grunt tasks
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/[email protected]
- name: Set up Node.js environment
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
caching: true
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run postinstall scripts
run: npm rebuild && npm run prepare --if-present
- name: Run build tasks
run: npm run build