SEO improvements: Add json+ld schema.org microdata for Blog Posts #614
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, pull_request] | |
jobs: | |
test: | |
name: Test Node.js ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
node-version: | |
- 18 | |
- 22 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
id: pnpm-install | |
with: | |
version: 9.12.2 | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile --strict-peer-dependencies | |
- name: Run test | |
run: pnpm test | |
# TODO Enable those lines below if you use a Redis cache, you'll also need to configure GitHub Repository Secrets | |
# env: | |
# REDIS_HOST: ${{ secrets.REDIS_HOST }} | |
# REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }} | |
# - name: Build | |
# run: pnpm build |