1 changed files with 31 additions and 19 deletions
@ -1,30 +1,42 @@ |
|||||||
name: Format Javascript |
name: Format+Lint Javascript |
||||||
|
|
||||||
# This action works with pull requests and pushes |
# This action works with pull requests and pushes |
||||||
on: |
on: |
||||||
push: |
push: |
||||||
branches: |
paths: |
||||||
- develop |
- web/** |
||||||
|
|
||||||
jobs: |
jobs: |
||||||
prettier: |
prettier: |
||||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||||
if: ${{ github.actor != 'dependabot[bot]' }} |
if: ${{ github.actor != 'dependabot[bot]' }} |
||||||
|
|
||||||
steps: |
steps: |
||||||
- name: Checkout |
- name: Checkout |
||||||
uses: actions/checkout@v3 |
uses: actions/checkout@v3 |
||||||
with: |
with: |
||||||
# Make sure the actual branch is checked out when running on pull requests |
# Make sure the actual branch is checked out when running on pull requests |
||||||
ref: ${{ github.head_ref }} |
ref: ${{ github.head_ref }} |
||||||
fetch-depth: 0 |
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} |
||||||
|
working_directory: web |
||||||
|
only_changed: true |
||||||
|
env: |
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
||||||
|
|
||||||
|
linter: |
||||||
|
runs-on: ubuntu-latest |
||||||
|
name: Run linter on changed files |
||||||
|
steps: |
||||||
|
- name: Checkout |
||||||
|
uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Install Dependencies |
||||||
|
run: npm install |
||||||
|
|
||||||
- name: Prettify code |
- name: Lint |
||||||
uses: creyD/prettier_action@v4.2 |
run: npm run lint |
||||||
with: |
|
||||||
# This part is also where you can pass other options, for example: |
|
||||||
prettier_options: --write web/**/*.{js,ts,jsx,tsx,css,md} |
|
||||||
working_directory: web |
|
||||||
only_changed: true |
|
||||||
env: |
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
||||||
|
Loading…
Reference in new issue