added: Add workflow to verify that all commits in a PR are signed #558
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |