Profile Flow: init ProfileTemplate #87
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 Checks | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
pull-request-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Packages | |
run: npm install | |
- name: Run Lint | |
run: npm run lint | |
- name: Run TypeScript compiler | |
run: npx tsc --noEmit | |
- name: Run test | |
run: npm run test |