Skip to content

Merge pull request #5 from stefanoamorelli/chore/logo #16

Merge pull request #5 from stefanoamorelli/chore/logo

Merge pull request #5 from stefanoamorelli/chore/logo #16

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 10.10.0
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run tests
run: pnpm test