|
|
@ -5,22 +5,22 @@ on:
|
|
|
|
branches:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- dev
|
|
|
|
paths:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/lint-javascript.yml"
|
|
|
|
- '.github/workflows/lint-javascript.yml'
|
|
|
|
- "plugins/*/guest-js/**"
|
|
|
|
- 'plugins/*/guest-js/**'
|
|
|
|
- ".eslintignore"
|
|
|
|
- '.eslintignore'
|
|
|
|
- ".eslintrc.json"
|
|
|
|
- '.eslintrc.json'
|
|
|
|
- ".prettierignore"
|
|
|
|
- '.prettierignore'
|
|
|
|
- "**/package.json"
|
|
|
|
- '**/package.json'
|
|
|
|
pull_request:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- dev
|
|
|
|
paths:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/lint-javascript.yml"
|
|
|
|
- '.github/workflows/lint-javascript.yml'
|
|
|
|
- "plugins/*/guest-js/**"
|
|
|
|
- 'plugins/*/guest-js/**'
|
|
|
|
- ".eslintignore"
|
|
|
|
- '.eslintignore'
|
|
|
|
- ".eslintrc.json"
|
|
|
|
- '.eslintrc.json'
|
|
|
|
- ".prettierignore"
|
|
|
|
- '.prettierignore'
|
|
|
|
- "**/package.json"
|
|
|
|
- '**/package.json'
|
|
|
|
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
@ -60,8 +60,9 @@ jobs:
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
node-version: 18
|
|
|
|
node-version: 18
|
|
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
|
|
|
|
version: 7.x.x
|
|
|
|
run_install: true
|
|
|
|
run_install: true
|
|
|
|
- name: prettier check
|
|
|
|
- name: prettier check
|
|
|
|
run: pnpm format-check
|
|
|
|
run: pnpm format-check
|
|
|
|