fix: smaller UI areas on mobile in the player #25
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 | |
on: | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm test | |
- name: Lint | |
run: npm run lint | |
- name: Upload build to GitHub Pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
name: stremio-web | |
path: build | |
- name: Deploy build to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
with: | |
artifact_name: stremio-web |