Skip to content

Commit

Permalink
Update deploy workflow to fix url issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira committed May 28, 2024
1 parent 6322f5a commit f113289
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,11 @@
name: Lint, Build, and Deploy
name: Build, and Deploy

on:
push:
branches:
- 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
Expand All @@ -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
Expand Down

0 comments on commit f113289

Please sign in to comment.