Skip to content

tmphat1312 is learning GitHub Actions with Vitest testing #15

tmphat1312 is learning GitHub Actions with Vitest testing

tmphat1312 is learning GitHub Actions with Vitest testing #15

Workflow file for this run

name: vitest-ci
run-name: ${{ github.actor }} is learning GitHub Actions with Vitest testing
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
vitest-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
run: npm i -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Run unit tests
run: pnpm test