type fix #2009
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: Run Tests | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, reopened] | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Deps | |
| run: | | |
| yarn | |
| yarn build | |
| - name: Test | |
| run: | | |
| npx --yes lerna@7 run test -- --passWithNoTests |