This repository was archived by the owner on Apr 5, 2025. It is now read-only.
Update dependency brighterscript to v0.69.5 #2772
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| jobs: | |
| dev: | |
| # prevent job from running twice when a PR pushes a new commit | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # 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@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4 | |
| with: | |
| name: Jellyfin-Roku-dev-${{ github.sha }} | |
| path: ${{ github.workspace }}/build/staging | |
| if-no-files-found: error |