2022-12-26 04:17:13 +01:00
|
|
|
name: Lint
|
2021-02-05 22:07:05 +01:00
|
|
|
|
|
|
|
# This action works with pull requests and pushes
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-29 23:18:42 +02:00
|
|
|
paths:
|
|
|
|
- web/**
|
2022-09-05 21:33:01 +02:00
|
|
|
pull_request_target:
|
2022-09-03 20:35:46 +02:00
|
|
|
paths:
|
|
|
|
- web/**
|
2022-06-29 23:34:37 +02:00
|
|
|
|
2021-02-05 22:07:05 +01:00
|
|
|
jobs:
|
|
|
|
prettier:
|
2022-12-26 04:17:13 +01:00
|
|
|
name: Javascript prettier
|
2021-02-05 22:07:05 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-11 02:07:59 +02:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
|
|
|
|
2021-05-18 19:13:26 +02:00
|
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
2021-02-05 22:07:05 +01:00
|
|
|
steps:
|
2022-11-24 00:04:20 +01:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
|
|
|
|
2022-06-29 23:18:42 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
# Make sure the actual branch is checked out when running on pull requests
|
2022-09-05 21:33:01 +02:00
|
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
2022-06-29 23:18:42 +02:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-02-19 04:43:59 +01:00
|
|
|
# Note: Remove this once https://github.com/creyD/prettier_action/issues/113 is fixed.
|
|
|
|
- name: Install npm v8
|
|
|
|
run: npm i -g npm@8
|
|
|
|
|
2022-06-29 23:18:42 +02:00
|
|
|
- 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:
|
2022-12-26 04:17:13 +01:00
|
|
|
name: Javascript linter
|
2022-06-29 23:18:42 +02:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-11 02:07:59 +02:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./web
|
2022-09-05 21:33:01 +02:00
|
|
|
|
2022-06-29 23:18:42 +02:00
|
|
|
steps:
|
2022-11-24 00:04:20 +01:00
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v5
|
|
|
|
with:
|
|
|
|
concurrent_skipping: 'same_content_newer'
|
|
|
|
|
2022-06-29 23:18:42 +02:00
|
|
|
- name: Checkout
|
2022-08-16 08:37:48 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-09-05 21:33:01 +02: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-29 23:18:42 +02:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
2022-09-05 21:33:01 +02:00
|
|
|
run: npm install
|
2021-02-05 22:07:05 +01:00
|
|
|
|
2022-06-29 23:18:42 +02:00
|
|
|
- name: Lint
|
|
|
|
run: npm run lint
|