Skip to content

✨ feat: Support for enabling the blog module in the website #12

✨ feat: Support for enabling the blog module in the website

✨ feat: Support for enabling the blog module in the website #12

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Build and Test PRs
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: ./build/
retention-days: 1