Update FUNDING.yml (#459) #407
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: Build and Test | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: "*" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - run: git checkout main && git checkout $GITHUB_SHA | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm changeset status | |
| - run: pnpm test --recursive | |
| - run: pnpm run --recursive lint |