owncast/.github/workflows/javascript-format-build.yml

171 lines
5.1 KiB
YAML
Raw Normal View History

name: Javascript
2021-02-06 00:07:05 +03:00
# This action works with pull requests and pushes
on:
push:
2022-06-30 00:18:42 +03:00
paths:
- web/**
pull_request_target:
paths:
- web/**
2021-02-06 00:07:05 +03:00
jobs:
formatting:
name: Code formatting
2021-02-06 00:07:05 +03:00
runs-on: ubuntu-latest
2022-07-11 03:07:59 +03:00
defaults:
run:
working-directory: ./web
2021-02-06 00:07:05 +03:00
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
2022-06-30 00:18:42 +03:00
- name: Checkout
uses: actions/checkout@v3
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 }}
2022-06-30 00:18:42 +03:00
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v37
2022-06-30 00:18:42 +03:00
with:
2023-08-02 00:30:04 +03:00
files_ignore: |
static/**
web/next.config.js
files_yaml: |
src:
- 'web/**.js'
- 'web/**.ts'
- 'web/**.tsx'
- 'web/**.jsx'
- 'web/**.css'
- 'web/**.md'
2022-06-30 00:18:42 +03: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-30 00:18:42 +03:00
- name: Install Dependencies
run: npm install
2021-02-06 00:07:05 +03:00
2022-06-30 00:18:42 +03:00
- name: Lint
if: steps.changed-files.outputs.src_any_changed == 'true'
2023-08-01 23:19:36 +03:00
run: npx eslint --fix ${{ steps.changed-files.outputs.src_all_changed_files }}
- name: Prettier
if: steps.changed-files.outputs.src_any_changed == 'true'
2023-08-01 23:19:36 +03:00
run: npx prettier --write ${{ steps.changed-files.outputs.src_all_changed_files }}
- name: Commit changes
if: steps.changed-files.outputs.src_any_changed == 'true'
uses: EndBug/add-and-commit@v9
with:
author_name: Owncast
author_email: owncast@owncast.online
message: 'Javascript formatting autofixes'
pull: '--rebase --autostash'
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'
- name: Checkout
uses: actions/checkout@v3
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: 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 }}-
- name: Install Dependencies
run: npm install
- name: Check for unused JS code and dependencies
run: npx knip --include dependencies,files,exports
# 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:
name: Build and bundle web project
runs-on: ubuntu-latest
if: github.repository == 'owncast/owncast'
needs: [formatting, unused-code]
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- 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-03 00:04:00 +03:00
- name: Checkout
uses: actions/checkout@v3
2023-08-03 00:04:00 +03: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
# Only commit built web project files on develop.
- name: Commit changes
if: ${{ github.ref == 'refs/heads/develop' }}
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-03 00:04:00 +03:00
- run: |
git pull --rebase
git push