mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
35 lines
566 B
YAML
35 lines
566 B
YAML
|
name: Style check
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
push:
|
||
|
branches:
|
||
|
- deploy/dev
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup NodeJS
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: 18
|
||
|
cache: yarn
|
||
|
cache-dependency-path: ./web/package.json
|
||
|
|
||
|
- name: Web dependencies
|
||
|
run: |
|
||
|
cd ./web
|
||
|
yarn install --frozen-lockfile
|
||
|
|
||
|
- name: Web style check
|
||
|
run: |
|
||
|
cd ./web
|
||
|
yarn run lint
|