piriwata_pubScale/.github/workflows/build.yml
piriwata 4f37e9b984 Run build on pull request
- 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
2023-05-11 01:13:17 +09:00

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