Update actions/deploy-pages digest to 13b55b3 #1275
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-dev | |
on: | |
pull_request: | |
branches-ignore: | |
- master | |
push: | |
branches: | |
- unstable | |
jobs: | |
dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: NPM install | |
run: npm ci | |
- name: Install roku module dependencies | |
run: npm run ropm | |
- name: Build app | |
run: npm run build | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3 | |
with: | |
name: Jellyfin-Roku-dev-${{ github.sha }} | |
path: ${{ github.workspace }}/build/staging | |
if-no-files-found: error |