Skip to content

[fix] "Something went wrong" error for videos #35

[fix] "Something went wrong" error for videos

[fix] "Something went wrong" error for videos #35

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- src/**/*.js
pull_request:
paths:
- src/**/*.js
workflow_dispatch:
# Prevent all permissions from being set, just use the ones we need.
permissions:
contents: read
# Cancel in-progress runs on new commits.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
format:
# Prevent running this in forks
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Check code format
run: npm run check-format