Skip to content

Bump @primer/primitives from 7.11.13 to 7.11.14 #1564

Bump @primer/primitives from 7.11.13 to 7.11.14

Bump @primer/primitives from 7.11.13 to 7.11.14 #1564

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
browser:
- ChromeHeadless
- FirefoxHeadless
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Test
run: npm test -- --browsers ${{ matrix.browser }}
- name: Diff
run: git diff --exit-code