Add support for message requesting #61
Workflow file for this run
This file contains 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: Pull Request CI | |
on: | |
# push: | |
# branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
main: | |
name: Main Job | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Install dependencies | |
run: pnpm i | |
- name: Run ESLint and Prettier | |
run: pnpm run lint | |
- name: Run Typescript static checks | |
run: tsc --noEmit | |
- name: Run unit tests | |
run: pnpm test | |
- name: Build project | |
run: pnpm run build |