Skip to content

Commit

Permalink
feat(ci): 添加 eslint 代码格式检查 的相关 CI, 阻止代码风格存在问题的分支被提交
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlayer0 committed Apr 11, 2023
1 parent f28ada2 commit 49ed2fd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/npm-checkstyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: eslint_checkstyle

on: [push, workflow_dispatch]

jobs:
checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm i eslint
- run: node_modules/eslint/bin/eslint.js .
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const plugin = require('tailwindcss/plugin')
const colors = require('tailwindcss/colors')
import plugin from 'tailwindcss/plugin'
import colors from 'tailwindcss/colors'

module.exports = {
purge: {
Expand Down

0 comments on commit 49ed2fd

Please sign in to comment.