A lot of new icons and some minor changes #329
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, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.2" | |
| - run: make setup | |
| - run: make clean build-lib-js | |
| - run: make clean build-lib-types | |
| - run: make clean build-web | |
| - run: make clean check-package.json | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.2" | |
| - run: make setup | |
| - run: make clean lint-ts-biome | |
| - run: make clean lint-ts-tsc | |
| - run: make clean test-bun | |
| - run: make clean test-exports |