23 lines
645 B
YAML
23 lines
645 B
YAML
name: build
|
|
on:
|
|
pull_request:
|
|
push:
|
|
paths-ignore:
|
|
- 'locale/**'
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
|
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
|
|
with:
|
|
node-version: "14.12.0"
|
|
- run: npm ci
|
|
- run: npx ropm install
|
|
- run: make dev
|
|
- uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # tag=v3
|
|
with:
|
|
name: Jellyfin-Roku-dev-${{ github.sha }}
|
|
path: ${{ github.workspace }}/out/staging
|
|
if-no-files-found: error
|