Skip to content

Commit

Permalink
ci: 타입오류 메시지 상대경로 명시적으로 해소
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Sep 7, 2023
1 parent df27363 commit daee07b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ name: Test
on:
pull_request:

defaults:
run:
shell: bash

jobs:
test:
name: Test PR
runs-on: ubuntu-latest
environment: development

steps:
- uses: reviewdog/action-setup@v1

- name: Checkout
uses: actions/checkout@v3

Expand Down Expand Up @@ -37,15 +43,10 @@ jobs:

- name: install dependencies
run: |
pnpm install --frozen-lockfile
pnpm install --frozen-lockfile --prod
pnpm --filter='@jiphyeonjeon-42/contracts' build
- if: always()
name: check types (backend)
working-directory: backend
run: pnpm check

- if: always()
name: check types (contracts)
working-directory: contracts
run: pnpm check
- name: check types
if: always()
run: |
pnpm -r --no-bail --parallel run check | sed -r 's|(.*)( check: )(.*)|\1/\3|'

0 comments on commit daee07b

Please sign in to comment.