Skip to content

Commit

Permalink
ci(github): specify working-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kubosho committed Nov 10, 2024
1 parent a187246 commit e502001
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:

jobs:
check:
defaults:
run:
working-directory: client

runs-on: ubuntu-latest

steps:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ on:

jobs:
test:
defaults:
run:
working-directory: client

env:
PLAYWRIGHT_VERSION: null

runs-on: ubuntu-latest

timeout-minutes: 60

steps:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:

jobs:
lint:
defaults:
run:
working-directory: client

runs-on: ubuntu-latest

steps:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:

jobs:
release:
defaults:
run:
working-directory: client

runs-on: ubuntu-latest

steps:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ env:

jobs:
test:
defaults:
run:
working-directory: client

runs-on: ubuntu-latest

steps:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/upload_og_image_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Upload og:image to S3
on:
push:
branches: [main]
paths:
- client/public/assets/images/og/**

env:
AWS_BUCKET_NAME: ${{ secrets.AWS_BUCKET_NAME }}
Expand All @@ -13,6 +15,10 @@ permissions:

jobs:
upload:
defaults:
run:
working-directory: client

runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit e502001

Please sign in to comment.