owncast/.github/workflows/javascript-formatting.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

2022-06-30 00:18:42 +03:00
name: Format+Lint 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/**
2021-02-06 00:07:05 +03:00
jobs:
prettier:
runs-on: ubuntu-latest
2022-07-11 03:07:59 +03:00
defaults:
run:
working-directory: ./web
2021-05-18 20:13:26 +03:00
if: ${{ github.actor != 'dependabot[bot]' }}
2021-02-06 00:07:05 +03:00
steps:
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.head_ref }}
fetch-depth: 0
- name: Prettify code
uses: creyD/prettier_action@v4.2
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{js,ts,jsx,tsx,css,md}
only_changed: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
linter:
runs-on: ubuntu-latest
2022-07-11 03:07:59 +03:00
defaults:
run:
working-directory: ./web
2022-06-30 00:18:42 +03:00
name: Run linter on changed files
steps:
- name: Checkout
2022-08-16 09:37:48 +03:00
uses: actions/checkout@v3
2022-06-30 00:18:42 +03:00
- name: Install Dependencies
run: npm install --force
2021-02-06 00:07:05 +03:00
2022-06-30 00:18:42 +03:00
- name: Lint
run: npm run lint