mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 02:10:08 +00:00
37 lines
499 B
YAML
37 lines
499 B
YAML
name: Viewer build linux
|
|
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
release:
|
|
types: [published]
|
|
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: ./Viewer
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install -y \
|
|
nodejs npm \
|
|
wget zip
|
|
|
|
- name: Pre build
|
|
run: make dev
|
|
|
|
- name: Build
|
|
run: make dist
|
|
|
|
- name: Test
|
|
run: ls ./dist/
|