From 4b498cef6add2e7342a24f7598ed47b32086ae54 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 12 Nov 2023 03:45:23 -0500 Subject: feat: use gha to build/deploy --- .github/workflows/lint.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/lint.yml (limited to '.github/workflows/lint.yml') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 63db8df..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Lint - -on: - push: - branches: [main] - pull_request: - workflow_dispatch: - -jobs: - lint: - runs-on: ubuntu-latest - - permissions: - contents: read - security-events: write - - steps: - - uses: actions/checkout@v4 - - - name: Setup pnpm - uses: pnpm/action-setup@v2 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: pnpm - cache-dependency-path: pnpm-lock.yaml - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Lint - run: pnpm run lint -f @microsoft/eslint-formatter-sarif -o /tmp/lint.sarif - continue-on-error: true - - - name: Strip suppressed results - run: pnpm dlx @ryanccn/sarif-strip-suppressed /tmp/lint.sarif - - - name: Upload results - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: /tmp/lint.sarif - wait-for-processing: true -- cgit v1.2.3