Skip to content

Commit

Permalink
ci(pnpm): 캐시 안하기 (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 authored Jul 9, 2023
1 parent e07c3b2 commit 142cb9e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: PR 테스트

on:
pull_request:


jobs:
deploy:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: setup pnpm
run: |
corepack enable
corepack prepare pnpm@latest-8 --activate
pnpm config set store-dir .pnpm-store
- name: install dependencies
working-directory: backend
run: pnpm install

- name: test backend
working-directory: backend
run: pnpm test

- name: build backend
working-directory: backend
run: pnpm build

0 comments on commit 142cb9e

Please sign in to comment.