Skip to content

docs: add emoji to "how it works" #8

docs: add emoji to "how it works"

docs: add emoji to "how it works" #8

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "✨ Starting job. This job was triggered by ${{ github.event_name }} event."
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run Vitest tests
run: pnpm test