Skip to content

Commit

Permalink
Pepr color and logo
Browse files Browse the repository at this point in the history
  • Loading branch information
bdfinst committed Oct 19, 2023
1 parent 39cb937 commit 8761954
Show file tree
Hide file tree
Showing 6 changed files with 277 additions and 163 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build and Test

on:
push:
paths-ignore:
- "README.md"
pull_request:
branches: [main]
paths-ignore:
- "README.md"

jobs:
build_and_test:
runs-on: ubuntu-latest

strategy:
matrix:
node: [16, 18, 20]

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "latest"
extended: true
- name: Install project
run: npm ci
- name: Run tests
run: npm test
Loading

0 comments on commit 8761954

Please sign in to comment.