build: prepare 0.2.0 package exposure #5
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 faz-bootstrap tests | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ["22", "24", "26"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install dependencies | |
| run: | | |
| pnpm install --frozen-lockfile | |
| - name: Run build | |
| run: | | |
| pnpm run build | |
| - name: Run vitest unit tests | |
| run: | | |
| pnpm test |