chore(release): 0.2.1-unstable.20260828090144 #428
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: Lint Check | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - main | |
| - beta | |
| jobs: | |
| lint-check: | |
| runs-on: ubuntu-latest | |
| # Observed fleet-wide over 176 runs: median 0.6 min, max 1.4 min. | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| # This job had NO setup-node at all, so it inherited the runner default — | |
| # currently Node 22, which bundles npm 10. npm 10 cannot install from the | |
| # npm 11 lockfile this repo now ships: it exits EUSAGE with | |
| # "Missing: <pkg> from lock file". Node 24 bundles npm 11. | |
| # | |
| # Nothing in this file named a Node version, so nothing looked wrong. | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Linting | |
| run: npm run lint |