chore: bump minor version. #203
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: | |
| ci: | |
| name: CI (Node ${{ matrix.version }}-${{ matrix.os }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| version: ['22.21.1', '24.11.1'] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4.2.2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4.3.0 | |
| with: | |
| node-version: ${{ matrix.version }} | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Save error log | |
| uses: actions/upload-artifact@v4.6.2 | |
| if: ${{ failure() }} | |
| with: | |
| name: npm-debug-log-${{ hashFiles('package-lock.json') }} | |
| path: npm-debug.log | |
| - name: Lint | |
| run: npm run lint | |
| - name: Check Cycles | |
| run: npm run check:cycles | |
| - name: Test | |
| run: npm test | |
| - name: Generate Playwright Types | |
| run: npm run types -w @knighted/css-playwright-fixture | |
| - name: Check Types | |
| run: npm run check-types | |
| - name: Report Coverage | |
| uses: codecov/codecov-action@v5.5.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Pack | |
| run: npm pack --pack-destination=packages/css --workspace=@knighted/css |