release: v0.9.3 — DX patch (feature-flag visibility + doctor command) #291
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| # Two-step install: generate a lockfile in-runner with | |
| # --package-lock-only, then install from it with `npm ci`. | |
| # Lockfiles are gitignored at the repo level. | |
| - run: npm install --package-lock-only --legacy-peer-deps --no-audit --no-fund | |
| - run: npm ci --legacy-peer-deps --no-audit --no-fund | |
| - run: npm run build | |
| - run: npm test |