From ce7838d9359bc181925d8940079cf7bd3d47f544 Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Thu, 4 Apr 2024 13:36:44 -0700 Subject: [PATCH] ci: remove test verify workflow --- .github/workflows/verify.yml | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml deleted file mode 100644 index cf87de1f..00000000 --- a/.github/workflows/verify.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Verify -on: - push: - pull_request: - workflow_dispatch: - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - - name: "Lint › Checkout" - uses: actions/checkout@v3 - - - name: "Lint › Setup NodeJS" - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: "Lint › Install NPM Modules" - run: npm ci - - - name: "Lint › Run" - run: npm run lint - - test: - needs: - - lint - runs-on: ubuntu-latest - steps: - - - name: "Test › Checkout" - uses: actions/checkout@v3 - - - name: "Test › Setup NodeJS" - uses: actions/setup-node@v3 - with: - node-version: '16' - - - name: "Test › Install NPM Modules" - run: npm ci - - - name: "Test › Run" - run: npm test \ No newline at end of file