mirror of
https://github.com/piriwata/pubScale.git
synced 2026-07-22 07:50:26 +00:00
- Add a Continuous Integration (CI) process to automatically verify the buildability of the pull request. Previously, the code contained linting errors that prevented successful builds - Fixed linting errors
21 lines
421 B
YAML
21 lines
421 B
YAML
name: Build Obsidian plugin
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Build
|
|
id: build
|
|
run: |
|
|
npm install
|
|
npm run build
|