Skip to content

Fix typo in README.md #59

Fix typo in README.md

Fix typo in README.md #59

Workflow file for this run

name: Build, TypeScripts, tests
on:
pull_request:
merge_group:
branches:
- main
concurrency:
group: tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 8.10.0
- uses: actions/setup-node@v3
with:
node-version-file: package.json
cache: "pnpm"
- name: Install dependencies
run: pnpm --version && pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test