Bump start-server-and-test from 2.0.12 to 2.1.0 in /hugo-site #766
Workflow file for this run
This file contains hidden or 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] | |
jobs: | |
# Build Hugo site and run Cypress E2E tests | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: 'latest' | |
extended: true | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
cache-dependency-path: hugo-site/package-lock.json | |
- name: Install Hugo dependencies | |
run: | | |
cd hugo-site | |
npm ci | |
- name: Install Dart Sass | |
run: sudo snap install dart-sass | |
- name: Run Cypress tests | |
uses: cypress-io/github-action@v4 | |
with: | |
command: npm run test:e2e:ci | |
working-directory: hugo-site |