Skip to content

Bump @types/node from 22.5.4 to 22.5.5 #1150

Bump @types/node from 22.5.4 to 22.5.5

Bump @types/node from 22.5.4 to 22.5.5 #1150

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