forked from opentiny/tiny-engine
37 lines
788 B
YAML
37 lines
788 B
YAML
name: Push And Create PR Check
|
|
|
|
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: 18
|
|
|
|
- name: Install pnpm
|
|
run: npm i -g pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i
|
|
|
|
- name: Get changed files
|
|
id: get_changed_files
|
|
uses: tj-actions/changed-files@v41
|
|
with:
|
|
files: |
|
|
**.js
|
|
**.vue
|
|
**.jsx
|
|
- name: Run ESLint
|
|
run: npx eslint ${{steps.get_changed_files.outputs.all_changed_files}}
|
|
- name: Run Build
|
|
run: pnpm run build:plugin && pnpm run build:alpha
|