2022-12-26 06:17:13 +03:00
|
|
|
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/**
|
2022-09-05 22:33:01 +03:00
|
|
|
pull_request_target:
|
2022-09-03 21:35:46 +03:00
|
|
|
paths:
|
|
|
|
- web/**
|
2022-06-30 00:34:37 +03:00
|
|
|
|
2021-02-06 00:07:05 +03:00
|
|
|
jobs:
|
|
|
|
prettier:
|
2022-12-26 06:17:13 +03:00
|
|
|
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:
|
2022-11-24 02:04:20 +03:00
|
|
|
- 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
|
2022-09-05 22:33:01 +03:00
|
|
|
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
|
2023-02-19 22:31:10 +03:00
|
|
|
uses: creyD/prettier_action@v4.3
|
2022-06-30 00:18:42 +03:00
|
|
|
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:
|
2022-12-26 06:17:13 +03:00
|
|
|
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-09-05 22:33:01 +03:00
|
|
|
|
2022-06-30 00:18:42 +03:00
|
|
|
steps:
|
2022-11-24 02:04:20 +03:00
|
|
|
- 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
|
2022-09-05 22:33:01 +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
|
2022-06-30 00:18:42 +03:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
2022-09-05 22:33:01 +03:00
|
|
|
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
|