Enforce RiverStoryScroll
children are Rivers using types (#749)
#4550
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: | |
branches: | |
- main | |
- next-minor | |
pull_request: | |
jobs: | |
ci: | |
if: ${{ github.repository == 'primer/brand' }} | |
name: Install and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm ci --legacy-peer-deps && cd apps/docs && npm ci --legacy-peer-deps | |
- name: Build | |
run: npm run build:lib | |
- name: Run linters | |
run: npm run lint | |
- name: Check formatting | |
run: npm run format | |
- name: Verify types | |
run: npm run check | |
- name: Run unit tests | |
run: npm run test |