MOON-459: Add Spacing pico and update some spacings components #421
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: On Code Change | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
lint-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
shell: bash | |
run: yarn install --immutable | |
- name: Run linting | |
shell: bash | |
run: yarn lint | |
- name: Run tests | |
shell: bash | |
run: yarn test | |
build: | |
runs-on: ubuntu-latest | |
needs: lint-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
shell: bash | |
run: yarn install --immutable | |
- name: Run Build | |
shell: bash | |
run: yarn build | |