update license for font (#10) #14
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
| # Check that the pattern stays compile-clean. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: | | |
| package-lock.json | |
| examples/consumer-app/package-lock.json | |
| - name: Install dependencies - library | |
| run: npm ci | |
| - name: Build - library | |
| run: npm run build | |
| - name: Install dependencies - consumer app | |
| run: npm ci | |
| working-directory: examples/consumer-app | |
| - name: Build - consumer app | |
| run: npm run build | |
| working-directory: examples/consumer-app |