feat: typography standard colors #935
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
conventional: | |
name: Conventional title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check pr title | |
uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
changeset: | |
if: github.head_ref != 'changeset-release/main' | |
name: Changeset | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: yarn | |
- name: Install dependencies | |
shell: bash | |
run: yarn install --immutable | |
- name: Check for changeset | |
run: yarn changeset status --since="origin/main" |