chore(deps-dev): bump autoprefixer from 10.4.16 to 10.4.17 (#285) #604
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/[email protected] | |
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/[email protected] | |
with: | |
hugo-version: latest | |
# | |
# See /scripts/generate_resources.sh | |
# this is taken care of... Hopefully :-) | |
# | |
# - name: Create hugo-product-launch folder in resources | |
# run: mkdir ./exampleSite/resources/_gen/assets/css/hugo-product-launch | |
# # Otherwise I keep getting the error: | |
# # Error: Error building site: POSTCSS: failed to transform "css/main.css" (text/css): resource "css/hugo-product-launch/css/main.css_674d3a8c056e8697f10ad004211806b8" not found in file cache. | |
# # see e.g. https://github.com/janraasch/hugo-product-launch/runs/1026595219?check_suite_focus=true#step:8:4 | |
# - name: Copy cached resources to hugo-product-launch folder | |
# run: cp -R ./exampleSite/resources/_gen/assets/css/css ./exampleSite/resources/_gen/assets/css/hugo-product-launch/css | |
- 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/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |