Skip to content

build(deps-dev): bump @eslint/js from 9.12.0 to 9.13.0 #5

build(deps-dev): bump @eslint/js from 9.12.0 to 9.13.0

build(deps-dev): bump @eslint/js from 9.12.0 to 9.13.0 #5

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