mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-12-27 05:21:58 +00:00
35 lines
523 B
YAML
35 lines
523 B
YAML
name: Viewer build linux
|
|
|
|
on:
|
|
# push:
|
|
# branches: [ "master" ]
|
|
# pull_request:
|
|
# branches: [ "master" ]
|
|
|
|
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/
|