Skip to content

Bump ejs from 3.1.7 to 3.1.10 in /ui (#828) #131

Bump ejs from 3.1.7 to 3.1.10 in /ui (#828)

Bump ejs from 3.1.7 to 3.1.10 in /ui (#828) #131

name: Build Terrakube UI
on:
push:
branches: [ main ]
paths:
- 'ui/**'
pull_request:
branches: [ opened, synchronize, reopened ]
paths:
- 'ui/**'
jobs:
buildui:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./ui
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ui/package.json
- run: yarn install --frozen-lockfile
- run: npm run build --if-present
env:
CI: false