d6a1f60fab
* add json to lint workflow * add markdown to lint workflow * fix markdown linting errors + add outline to devguide * rename build workflow step * Spellcheck markdown files in lint workflow * make linter happy - fix spelling mistakes * bugfix * add problem-matcher to xml linter * add markdown error to test problem matcher * Add merge-conflicts workflow * fix merge conflict * Fix markdown linting errors * Fix markdown spelling errors * recommend markdownlint extension for vscode * auto add new PRs to Project board + combine with merge conflicts workflow * Move intro text above outline
24 lines
668 B
YAML
24 lines
668 B
YAML
name: build
|
|
on:
|
|
pull_request:
|
|
push:
|
|
paths-ignore:
|
|
- 'locale/**'
|
|
jobs:
|
|
roku-app:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
|
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
|
|
with:
|
|
node-version: "lts/*"
|
|
cache: "npm"
|
|
- run: npm ci
|
|
- run: npx ropm install
|
|
- run: make dev
|
|
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
|
|
with:
|
|
name: Jellyfin-Roku-dev-${{ github.sha }}
|
|
path: ${{ github.workspace }}/out/staging
|
|
if-no-files-found: error
|