Skip to content

Update underscore and other deps #1

Update underscore and other deps

Update underscore and other deps #1

Workflow file for this run

name: Grunt CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20' # Specify your required version
- name: Install dependencies
run: npm install # Installs Grunt and plugins listed in package.json
- name: Run Grunt tasks
run: npx grunt # Executes the default task or specify one: npx grunt build