2020-04-23 05:37:37 +08:00
|
|
|
name: Lint
|
2020-04-17 17:00:52 +08:00
|
|
|
|
|
|
|
on:
|
2021-03-19 05:14:10 +08:00
|
|
|
workflow_dispatch:
|
2020-04-17 17:00:52 +08:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'js/src/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'js/src/**'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
prettier:
|
2020-04-23 05:37:37 +08:00
|
|
|
name: JS / Prettier
|
2021-03-19 05:14:10 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-04-17 17:00:52 +08:00
|
|
|
|
|
|
|
steps:
|
2021-03-19 05:14:10 +08:00
|
|
|
- name: Check out code
|
2021-04-03 08:00:26 +08:00
|
|
|
uses: actions/checkout@v2
|
2020-04-17 17:00:52 +08:00
|
|
|
|
2021-03-19 05:14:10 +08:00
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@v2
|
2020-04-17 17:00:52 +08:00
|
|
|
with:
|
2021-03-19 05:14:10 +08:00
|
|
|
node-version: "14"
|
2020-04-17 17:00:52 +08:00
|
|
|
|
2021-03-19 05:14:10 +08:00
|
|
|
- name: Check JS formatting
|
|
|
|
run: npx prettier --check src
|
2020-04-17 17:00:52 +08:00
|
|
|
working-directory: ./js
|