Skip to content

maxi notices

maxi notices #1451

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.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