Skip to content

Commit

Permalink
feat: 테스트를 자동화합니다. (#134)
Browse files Browse the repository at this point in the history
* feat: 테스트 자동화 workflow 작성

* fix: step name 수정
  • Loading branch information
jungwoo3490 authored Sep 16, 2024
1 parent 2e42f76 commit 679b7b6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/vitest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

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

- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Install Dependencies
run: pnpm install

- name: Run Vitest Tests
run: pnpm test

0 comments on commit 679b7b6

Please sign in to comment.