Skip to content

add string formatters so [Object Object] does not show in output #186

add string formatters so [Object Object] does not show in output

add string formatters so [Object Object] does not show in output #186

Workflow file for this run

name: NodeJS with Grunt
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
grunt
- name: Deploy to GitHub pages
uses: JamesIves/github-pages-deploy-action@4.1.4
if: ${{ github.ref == 'refs/heads/master' && startsWith(matrix.node-version, '12') }}
with:
branch: gh-pages
folder: .
clean: false