2022-06-29 14:18:42 -07:00
|
|
|
name: Format+Lint 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/**
|
2022-06-29 14:34:37 -07:00
|
|
|
|
2021-02-05 13:07:05 -08:00
|
|
|
jobs:
|
|
|
|
prettier:
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-10 17:07:59 -07:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
|
|
|
|
2021-05-18 10:13:26 -07:00
|
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
2021-02-05 13:07:05 -08:00
|
|
|
|
|
|
|
steps:
|
2022-06-29 14:18:42 -07: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-10 17:07:59 -07:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
2022-06-29 14:18:42 -07:00
|
|
|
name: Run linter on changed files
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
2022-07-20 20:42:23 -07:00
|
|
|
run: npm install --force
|
2021-02-05 13:07:05 -08:00
|
|
|
|
2022-06-29 14:18:42 -07:00
|
|
|
- name: Lint
|
|
|
|
run: npm run lint
|