处理切换 Chrome/Chromium 数据会丢失的问题 #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '**.js' | |
- '**.mjs' | |
- '**.cjs' | |
- '**.jsx' | |
- '**.ts' | |
- '**.mts' | |
- '**.cts' | |
- '**.tsx' | |
- '**.vue' | |
- '**.json' | |
pull_request: | |
paths: | |
- '**.js' | |
- '**.mjs' | |
- '**.cjs' | |
- '**.jsx' | |
- '**.ts' | |
- '**.mts' | |
- '**.cts' | |
- '**.tsx' | |
- '**.vue' | |
- '**.json' | |
concurrency: | |
group: lint-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: 'bash' | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
- run: npm ci | |
env: | |
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 | |
- run: npm run lint --if-present | |
# This job just check code style for in-template contributions. | |
code-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
- run: npm i prettier | |
- run: npx prettier --check "**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,json}" |