deps(fractal): update design tokens #240
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
# This is a Github Workflow that runs lint, formatter and unit tests on every | |
# push and pull request. | |
name: Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Checking code quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Installing dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: Starting TurboRepo local cache server | |
uses: dtinth/setup-github-actions-caching-for-turbo@v1 | |
- name: Checking linter | |
run: yarn run -T turbo run --continue lint --filter=!// | |
- name: Checking format | |
run: yarn run -T turbo run --continue format --filter=!// | |
- name: Checking typings | |
run: yarn run -T turbo run --continue types:check |