2023-07-29 16:10:03 -07:00
|
|
|
name: Javascript
|
2021-02-05 13:07:05 -08:00
|
|
|
|
|
|
|
# This action works with pull requests and pushes
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-29 14:18:42 -07:00
|
|
|
paths:
|
|
|
|
- web/**
|
2023-08-20 10:59:55 -07:00
|
|
|
- '!**.md'
|
|
|
|
|
2023-08-18 20:48:23 -07:00
|
|
|
pull_request:
|
2022-09-03 11:35:46 -07:00
|
|
|
paths:
|
|
|
|
- web/**
|
2023-08-20 10:59:55 -07:00
|
|
|
- '!**.md'
|
2022-06-29 14:34:37 -07:00
|
|
|
|
2021-02-05 13:07:05 -08:00
|
|
|
jobs:
|
2023-07-29 15:57:45 -07:00
|
|
|
formatting:
|
2023-07-29 16:35:08 -07:00
|
|
|
name: Code formatting
|
2021-02-05 13:07:05 -08:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-10 17:07:59 -07:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
|
|
|
|
2021-02-05 13:07:05 -08:00
|
|
|
steps:
|
2022-11-23 15:04:20 -08:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
2023-08-20 10:59:55 -07:00
|
|
|
cancel_others: 'true'
|
|
|
|
skip_after_successful_duplicate: 'true'
|
2022-11-23 15:04:20 -08:00
|
|
|
|
2022-06-29 14:18:42 -07:00
|
|
|
- name: Checkout
|
2023-10-07 13:52:25 -07:00
|
|
|
uses: actions/checkout@v4
|
2022-06-29 14:18:42 -07:00
|
|
|
with:
|
|
|
|
# Make sure the actual branch is checked out when running on pull requests
|
2022-09-05 12:33:01 -07:00
|
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-06-29 14:18:42 -07:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-07-29 15:57:45 -07:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2023-10-07 13:36:52 -07:00
|
|
|
uses: tj-actions/changed-files@v39
|
2022-06-29 14:18:42 -07:00
|
|
|
with:
|
2023-10-16 13:06:00 -04:00
|
|
|
path: 'web'
|
2023-08-01 14:30:04 -07:00
|
|
|
files_ignore: |
|
|
|
|
static/**
|
|
|
|
web/next.config.js
|
2023-07-29 15:57:45 -07:00
|
|
|
files_yaml: |
|
|
|
|
src:
|
2023-10-16 13:06:00 -04:00
|
|
|
- '**/*.{js,ts,tsx,jsx,css,md}'
|
2022-06-29 14:18:42 -07:00
|
|
|
|
2023-07-29 16:35:08 -07:00
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules-bundle-web-app
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('web/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-build-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2022-06-29 14:18:42 -07:00
|
|
|
- name: Install Dependencies
|
2022-09-05 12:33:01 -07:00
|
|
|
run: npm install
|
2021-02-05 13:07:05 -08:00
|
|
|
|
2022-06-29 14:18:42 -07:00
|
|
|
- name: Lint
|
2023-10-24 16:28:32 -07:00
|
|
|
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
|
|
|
|
run: npx eslint --fix ${{ steps.changed-files-yaml.outputs.src_all_changed_files }}
|
2023-07-29 15:57:45 -07:00
|
|
|
|
|
|
|
- name: Prettier
|
2023-10-24 16:28:32 -07:00
|
|
|
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
|
|
|
|
run: npx prettier --write ${{ steps.changed-files-yaml.outputs.src_all_changed_files }}
|
2023-07-29 15:57:45 -07:00
|
|
|
|
|
|
|
- name: Commit changes
|
2023-10-24 16:28:32 -07:00
|
|
|
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
|
2023-07-29 15:57:45 -07:00
|
|
|
uses: EndBug/add-and-commit@v9
|
|
|
|
with:
|
|
|
|
author_name: Owncast
|
|
|
|
author_email: owncast@owncast.online
|
|
|
|
message: 'Javascript formatting autofixes'
|
2023-10-24 16:28:32 -07:00
|
|
|
add: ${{ steps.changed-files-yaml.outputs.src_all_changed_files }}
|
2023-07-29 15:57:45 -07:00
|
|
|
pull: '--rebase --autostash'
|
2023-05-20 21:15:25 -07:00
|
|
|
|
|
|
|
unused-code:
|
|
|
|
name: Test for unused code
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
2023-08-20 10:59:55 -07:00
|
|
|
cancel_others: 'true'
|
|
|
|
skip_after_successful_duplicate: 'true'
|
2023-05-20 21:15:25 -07:00
|
|
|
|
|
|
|
- name: Checkout
|
2023-10-07 13:52:25 -07:00
|
|
|
uses: actions/checkout@v4
|
2023-05-20 21:15:25 -07:00
|
|
|
with:
|
|
|
|
# Make sure the actual branch is checked out when running on pull requests
|
|
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-07-29 16:35:08 -07:00
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules-bundle-web-app
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('web/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-build-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2023-05-20 21:15:25 -07:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Check for unused JS code and dependencies
|
|
|
|
run: npx knip --include dependencies,files,exports
|
2023-07-29 16:10:03 -07:00
|
|
|
|
|
|
|
# After any formatting and linting is complete we can run the build
|
|
|
|
# and bundle step. This both will verify that the build is successful as
|
|
|
|
# well as commiting the updated static files into the repository for use.
|
|
|
|
web-bundle:
|
2023-07-29 16:35:08 -07:00
|
|
|
name: Build and bundle web project
|
2023-07-29 16:10:03 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository == 'owncast/owncast'
|
2023-08-01 14:24:45 -07:00
|
|
|
needs: [formatting, unused-code]
|
2023-07-29 16:10:03 -07:00
|
|
|
steps:
|
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
2023-08-18 22:32:39 -07:00
|
|
|
cancel_others: 'true'
|
|
|
|
skip_after_successful_duplicate: 'true'
|
2023-07-29 16:10:03 -07:00
|
|
|
|
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules-bundle-web-app
|
|
|
|
with:
|
|
|
|
path: ~/.npm
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('web/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-build-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2023-08-02 14:04:00 -07:00
|
|
|
- name: Checkout
|
2023-10-07 13:52:25 -07:00
|
|
|
uses: actions/checkout@v4
|
2023-08-02 14:04:00 -07:00
|
|
|
with:
|
|
|
|
# Make sure the actual branch is checked out when running on pull requests
|
|
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Bundle web app (next.js build)
|
|
|
|
run: build/web/bundleWeb.sh
|
2023-07-29 16:10:03 -07:00
|
|
|
|
2023-08-12 17:48:30 -07:00
|
|
|
- name: Rebase
|
|
|
|
if: ${{ github.ref == 'refs/heads/develop' }}
|
|
|
|
run: |
|
2023-08-16 17:21:31 -07:00
|
|
|
git add static/web
|
2023-08-12 17:48:30 -07:00
|
|
|
git pull --rebase --autostash
|
|
|
|
|
2023-07-29 16:35:08 -07:00
|
|
|
# Only commit built web project files on develop.
|
2023-07-29 16:10:03 -07:00
|
|
|
- name: Commit changes
|
2023-07-31 12:02:19 -07:00
|
|
|
if: ${{ github.ref == 'refs/heads/develop' }}
|
2023-07-29 16:10:03 -07:00
|
|
|
uses: EndBug/add-and-commit@v9
|
|
|
|
with:
|
|
|
|
message: 'Bundle embedded web app'
|
|
|
|
add: 'static/web'
|
|
|
|
author_name: Owncast
|
|
|
|
author_email: owncast@owncast.online
|
2023-08-02 14:04:00 -07:00
|
|
|
|
2023-08-03 20:03:55 -07:00
|
|
|
- name: Push changes
|
|
|
|
if: ${{ github.ref == 'refs/heads/develop' }}
|
|
|
|
run: |
|
2023-08-03 19:48:27 -07:00
|
|
|
git pull --rebase --autostash
|
2023-08-02 14:04:00 -07:00
|
|
|
git push
|