diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 29f96b1..8a5830d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Lint, Build, and Deploy +name: Build, and Deploy on: push: @@ -6,18 +6,6 @@ on: - main jobs: - lint: - name: Lint - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 - with: - version: 8 - - run: pnpm install - - run: pnpm run lint - prettier: name: Prettier runs-on: ubuntu-latest @@ -33,8 +21,8 @@ jobs: build: name: Build runs-on: ubuntu-latest - environment: Build and test - needs: [lint, prettier] + environment: github-pages + needs: [prettier] steps: - name: Checkout repository