Skip to content

Command Mentions

Command Mentions #104

Workflow file for this run

name: Check Versions Match
# On PR to main, check that package.json and package-lock.json share the version, and that CHANGELOG.md is spec-compliant. Block otherwise.
on:
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.10.x
uses: actions/setup-node@v3
with:
node-version: 16.10.x
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Check versions Match
run: npm run release