Skip to content

Bump the non-breaking group across 1 directory with 18 updates #1087

Bump the non-breaking group across 1 directory with 18 updates

Bump the non-breaking group across 1 directory with 18 updates #1087

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout branch 🛎
uses: actions/checkout@v6
- name: Setup node env 🏗
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies 👨🏻‍💻
run: yarn --frozen-lockfile
- name: Build 📦
run: yarn build
- name: Run linter 👀
run: yarn lint
- name: Run tests 🧪
run: yarn test:once