This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
chore: Bump aws-cdk from 2.113.0 to 2.114.1 in /cdkworkshop.com #1299
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build workshop site | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build using Hugo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.105.0' | |
extended: true | |
- name: Install NPM dependencies | |
working-directory: ./cdkworkshop.com | |
run: npm install --frozen-lockfile | |
- name: Build site | |
working-directory: ./cdkworkshop.com | |
run: npm run build |