Skip to content

chore(deps): bump jsdom from 24.1.3 to 25.0.1 #82

chore(deps): bump jsdom from 24.1.3 to 25.0.1

chore(deps): bump jsdom from 24.1.3 to 25.0.1 #82

Workflow file for this run

name: Build TypingMind Plugin Server
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .nvmrc
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run build
run: npm run build