feat(root): RSC components added, packages modified, filter dom props function adapted #13
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: QA | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: QA - Steps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Install | |
uses: ./.github/common-actions/install | |
- name: Build packages | |
run: pnpm build | |
- name: Run tests | |
run: pnpm test | |
- name: Run ESLint | |
run: pnpm lint | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Run prettier | |
run: pnpm format:check |