Skip to content

fix: 调整资源导入页样式 #205

fix: 调整资源导入页样式

fix: 调整资源导入页样式 #205

Workflow file for this run

name: dashboard-front ci
on:
push:
branches: [ master, pre_*, ft_*, release/* ]
paths: ['src/dashboard-front/**']
pull_request:
branches: [ master, pre_*, ft_*, release/* ]
paths: ['src/dashboard-front/**']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'src/dashboard-front/package.json'
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm i --force
working-directory: src/dashboard-front
- name: ESLint
run: npx eslint --ext .js,.vue .
working-directory: src/dashboard-front