Skip to content

Feat/GitHub action

Feat/GitHub action #7

Workflow file for this run

name: CI
on:
push:
branches: []
pull_request:
branches: [develop,main]
jobs:
push-check:
runs-on: ubuntu-latest # windows-latest || macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Get changed files
uses: tj-actions/eslint-changed-files@v21
with:
config_path: ".eslintrc"
ignore_path: ".eslintignore"
extra_args: "--max-warnings=0"
file_extensions: |
**/*.ts
**/*.tsx
**/*.vue
**/*.js
**/*.jsx
- name: Run Build
run: pnpm run build:plugin