Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
*.gif
*.bmp
*.tiff
*.md
*.md
32 changes: 0 additions & 32 deletions .github/workflows/dockerx.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build for ino_dev

on:
push:
branches: [ino_dev]
pull_request:
branches: [ino_dev]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- run: npm ci
- run: npm test
- run: npm run build --if-present

- name: Upload build
uses: actions/upload-artifact@v4
with:
name: build-files
path: |
dist/
build/
public/
if: always()
50 changes: 0 additions & 50 deletions .github/workflows/node.js.scan.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/node.js.yml

This file was deleted.

31 changes: 31 additions & 0 deletions workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build for ino_dev

on:
push:
branches: [ino_dev]
pull_request:
branches: [ino_dev]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- run: npm ci
- run: npm test
- run: npm run build --if-present

- name: Upload build
uses: actions/upload-artifact@v4
with:
name: build-files
path: |
dist/
build/
public/
if: always()