Skip to content

Bump @types/node from 22.4.0 to 22.4.1 #1104

Bump @types/node from 22.4.0 to 22.4.1

Bump @types/node from 22.4.0 to 22.4.1 #1104

Workflow file for this run

name: Build and Test Obsidian Plugin
on:
push:
branches: [ main ]
paths:
- '**.ts'
- '**.json'
- '**.scss'
- '**.css'
pull_request:
branches: [ main ]
paths:
- '**.ts'
- '**.json'
- '**.scss'
- '**.css'
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Build and Test
id: build
run: |
npm install
npm run build
npm run test