chore(deps-dev): bump postcss from 8.4.37 to 8.4.38 #652
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Read node-version from .nvmrc | |
run: echo ::set-output name=NVMRC::$(cat .nvmrc) | |
id: nvm | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: "${{ steps.nvm.outputs.NVMRC }}" # see previous run-statement | |
- run: npm install # installs postcss-cli, etc. | |
- run: npm test | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2.6.0 | |
with: | |
hugo-version: latest | |
- name: Build local ./exampleSite | |
run: hugo --minify --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-product-launch/ | |
- name: Deploy to GitHub Pages | |
if: github.event_name == 'push' | |
uses: peaceiris/actions-gh-pages@v3.9.3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |