Remove "Earnings per view" info from channel preview (#3181) #7438
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
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Node.js CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Run "yarn install" | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Run "yarn lint" | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: lint | |
build: | |
needs: ['lint'] | |
name: 'build' | |
strategy: | |
matrix: | |
node-version: [18.x] | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
yarn global add cross-env | |
yarn | |
cross-env NODE_ENV=production yarn compile:web | |
env: | |
# UI | |
WELCOME_VERSION: 1.0 | |
DOMAIN: odysee.com | |
URL: https://odysee.com | |
SHARE_DOMAIN_URL: https://odysee.com | |
SITE_TITLE: Odysee | |
SITE_NAME: Odysee | |
SHOW_ADS: false | |
YRBL_HAPPY_IMG_URL: https://player.odycdn.com/api/v3/streams/free/yrbl-happy/7aa50a7e5adaf48691935d55e45d697547392929/839d9a | |
YRBL_SAD_IMG_URL: https://player.odycdn.com/api/v3/streams/free/yrbl-sad/c2d9649633d974e5ffb503925e1f17d951f1bd0f/f262dd | |
ENABLE_COMMENT_REACTIONS: true | |
ENABLE_NO_SOURCE_CLAIMS: true | |
DEFAULT_LANGUAGE: en | |
KNOWN_APP_DOMAINS: lbry.tv,lbry.lat,odysee.com | |
CHANNEL_STAKED_LEVEL_VIDEO_COMMENTS: 4 |