Skip to content

Bump @primer/primitives from 11.3.1 to 11.5.1 #130

Bump @primer/primitives from 11.3.1 to 11.5.1

Bump @primer/primitives from 11.3.1 to 11.5.1 #130

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Set up Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Build
run: npm run build
- name: Run tests defined in vitest
run: npm test
- name: Lint
run: npm run lint