Normalize line endings to LF (plus a few other tooling things) #116
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 & Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- run: npm run package | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: youtube_adfree_ipk | |
path: | | |
${{github.workspace}}/youtube.leanback.v4_*_all.ipk |