- Added fluid font tokens from Fluid Typescale Visualizer #97
This file contains 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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
- name: Install Dependencies | |
run: npm install | |
- name: Split tokens.json file | |
run: npm run split-json | |
# Convert tokens according to Style Dictionary config | |
- name: Run style-dictionary | |
run: npm run build | |
# Add files that were created during a run, e.g. created files from style dictionary or token-transformer. | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update Tokens |