Skip to content

Bump ejs from 3.1.8 to 3.1.10 #72

Bump ejs from 3.1.8 to 3.1.10

Bump ejs from 3.1.8 to 3.1.10 #72

Workflow file for this run

# For more information do to https://github.com/kontent-ai/kontent-ai.github.io/blob/main/docs/articles/JavaScript-Node.js-GitHub-Actions-Guidelines.md
name: "Build" # Represents the name of the whole action.
on: # Specifies the section where we describe our build triggers.
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- run: npm ci
- run: npm run build