Bring Tabs component coverage to 100% and adds aria-labelledby suppor… #6445
This file contains hidden or 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@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
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 | |
- 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 |