Skip to content

feat: add Vitest \& CI/CD Pipeline and Github Actions #3

feat: add Vitest \& CI/CD Pipeline and Github Actions

feat: add Vitest \& CI/CD Pipeline and Github Actions #3

Workflow file for this run

name: CI workflow
on: push
jobs:
run-linter-and-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Lint code
run: pnpm run lint
- name: Run tests
run: pnpm test