2022-09-03 12:08:45 +00:00
|
|
|
name: build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'locale/**'
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2023-01-05 14:47:28 +00:00
|
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
|
2022-10-13 14:33:34 +00:00
|
|
|
- uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # tag=v3
|
2022-09-03 12:08:45 +00:00
|
|
|
with:
|
|
|
|
node-version: "14.12.0"
|
|
|
|
- run: npm ci
|
|
|
|
- run: npx ropm install
|
|
|
|
- run: make dev
|
2022-10-21 22:54:54 +00:00
|
|
|
- uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # tag=v3
|
2022-09-03 12:08:45 +00:00
|
|
|
with:
|
|
|
|
name: Jellyfin-Roku-dev-${{ github.sha }}
|
|
|
|
path: ${{ github.workspace }}/out/staging
|
|
|
|
if-no-files-found: error
|