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

70 lines
1.8 KiB
YAML
Raw Normal View History

name: Lint
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:
prettier:
name: Javascript prettier
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-05-18 20:13:26 +03:00
if: ${{ github.actor != 'dependabot[bot]' }}
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: 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:
name: Javascript linter
2022-06-30 00:18:42 +03:00
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
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
2022-08-16 09:37:48 +03:00
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
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
run: npm run lint