Skip to content

chore(deps-dev): bump eslint from 9.37.0 to 9.38.0 #75

chore(deps-dev): bump eslint from 9.37.0 to 9.38.0

chore(deps-dev): bump eslint from 9.37.0 to 9.38.0 #75

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- name: Use Node.js 20
uses: actions/setup-node@v5
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Bundle
run: npm run bundle