Skip to content

added: Add workflow to verify that all commits in a PR are signed #558

added: Add workflow to verify that all commits in a PR are signed

added: Add workflow to verify that all commits in a PR are signed #558

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 10
- run: pnpm install
- run: pnpm typecheck
- run: pnpm eslint
- run: pnpm prettier
- run: pnpm test