Skip to content

Commit

Permalink
feat: 테스트 자동화 workflow 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
jungwoo3490 committed Sep 15, 2024
1 parent 2e42f76 commit 61624dd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/vitest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

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

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

- name: Install dependencies
run: pnpm install

- name: Run Vitest tests
run: pnpm run test

0 comments on commit 61624dd

Please sign in to comment.