mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-28 18:00:09 +00:00
working on build workflow
This commit is contained in:
parent
a17fe070b7
commit
e49327e1b8
34
.github/workflows/viewer-build-linux.yml
vendored
Normal file
34
.github/workflows/viewer-build-linux.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
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/
|
||||||
Loading…
x
Reference in New Issue
Block a user