fix tests on windows systems #99
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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 # Need for npm >=7.7 | |
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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 # Need for npm >=7.7 | |
cache: 'npm' | |
- run: npm i prettier | |
- run: npx prettier --check "**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,json}" |