Skip to content

added: skip actions on md/mdx #67

added: skip actions on md/mdx

added: skip actions on md/mdx #67

Workflow file for this run

name: Install and Test
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- '**/*.mdx'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- '**/*.mdx'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.9.0
- name: Install dependencies
run: npm ci
- name: Prepublish
run: make prepublish