Skip to content

Commit

Permalink
run prettier manually
Browse files Browse the repository at this point in the history
  • Loading branch information
lavalleeale committed Apr 12, 2024
1 parent 99731e8 commit 8095a38
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 44 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,8 @@ on:
- "v*"

jobs:
lintweb:
name: "Lint Web"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./web
steps:
- uses: actions/checkout@v3
- name: Prettify code
run: npx prettier --check ./src/**
web:
name: "Build Web"
needs: lintweb
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -31,19 +20,8 @@ jobs:
env:
NODE_ENV: development
run: yarn build
serverlint:
name: "Lint Server"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v3
- name: Prettify code
run: npx prettier --check ./src/**
server:
name: "Build Server"
needs: serverlint
runs-on: ubuntu-latest
defaults:
run:
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,8 @@ on:
pull_request:

jobs:
lintweb:
name: "Lint Web"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./web
steps:
- uses: actions/checkout@v3
- name: Prettify code
run: npx prettier --check ./src/**
web:
name: "Build Web"
needs: lintweb
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -30,19 +19,8 @@ jobs:
env:
NODE_ENV: development
run: yarn build
serverlint:
name: "Lint Server"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/checkout@v3
- name: Prettify code
run: npx prettier --check ./src/**
server:
name: "Build Server"
needs: serverlint
runs-on: ubuntu-latest
defaults:
run:
Expand Down

0 comments on commit 8095a38

Please sign in to comment.