Some checks failed
Build and Deploy / build (push) Failing after 1m29s
Move contents instead of directory itself to avoid permission issues with gitea-runner user who has write access inside but not to /opt. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
344 B
YAML
20 lines
344 B
YAML
name: Node.js CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "deepdiagram" ]
|
|
pull_request:
|
|
branches: [ "deepdiagram" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 20.x
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 20.x
|
|
- run: cp -r ./dist/* /var/www/deepdiagram
|