From 8971de5a6f347bb55c9c38ec803bfb56fe9abbbc Mon Sep 17 00:00:00 2001 From: jiaziling Date: Mon, 9 Sep 2024 13:34:50 +0800 Subject: [PATCH] docs: update --- .github/workflows/static.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml deleted file mode 100644 index c3e18e7..0000000 --- a/.github/workflows/static.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: CI - -on: - push: - branches: - - main - - pull_request: - branches: - - main - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set node - uses: actions/setup-node@v3 - with: - node-version: lts/* - - - name: Install dependencies - run: npm install - - - name: Lint Fix - run: npm run lint:fix - - - name: Lint - run: npm run lint - - - name: Build - run: npm run build