Skip to content

✨ Update regex for obsidian tags to prevent URLs from getting matched #25

✨ Update regex for obsidian tags to prevent URLs from getting matched

✨ Update regex for obsidian tags to prevent URLs from getting matched #25

Workflow file for this run

name: Simple Build Check
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.8.0"
cache: "npm"
# Install dependencies
- name: Install dependencies
run: npm install
# Build the website
- name: Build project
run: npm run build