Skip to content

build(deps-dev): bump the dev-dependencies group with 5 updates #25

build(deps-dev): bump the dev-dependencies group with 5 updates

build(deps-dev): bump the dev-dependencies group with 5 updates #25

Workflow file for this run

on: ["pull_request"]
name: Build and Test PR
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies 📦
run: npm ci
- name: Lint 🧹
run: npm run lint
- name: Build 🔧
run: npm run build
- name: Test 🧪
run: npm run test:ci