Skip to content

Bump eslint from 8.57.0 to 9.37.0 #1226

Bump eslint from 8.57.0 to 9.37.0

Bump eslint from 8.57.0 to 9.37.0 #1226

Workflow file for this run

name: Validate
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
uses: nasa-gcn/.github/.github/workflows/node.yml@main
with:
test-options:
bump:
name: dry run of version bump
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: '20.x'
- name: Configure git identity
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
- name: Install package
run: npm ci
- name: Bump version
run: npm version patch
- name: Run validation
run: npm test