Skip to content

Commit

Permalink
Fix github actions bug
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Jan 22, 2024
1 parent d6bd133 commit 32c5f25
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Backend-Server
run: npm install -g pnpm && pnpm install
run: pnpm install

- name: Compile Backend-Server
run: pnpm run build
run: npm run build

- name: Create DB Schema
run: pnpm run schema postgres root
run: npm run schema postgres root

- name: Test Backend-Server
run: pnpm run test -- --reset true
run: npm run test -- --reset true

0 comments on commit 32c5f25

Please sign in to comment.