Skip to content

Bump primer/.github from 1.0.0 to 2.1.1 #2007

Bump primer/.github from 1.0.0 to 2.1.1

Bump primer/.github from 1.0.0 to 2.1.1 #2007

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint -ws --if-present
- name: Test
run: npm run test -ws --if-present