Skip to content

fix(readme): badge url #3

fix(readme): badge url

fix(readme): badge url #3

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
full:
name: Node.js Latest Full
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run linter
run: pnpm lint
- name: Run typecheck
run: pnpm typecheck
- name: Run tests
run: pnpm test