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