Skip to content

Bump semver from 7.6.0 to 7.6.2 #4967

Bump semver from 7.6.0 to 7.6.2

Bump semver from 7.6.0 to 7.6.2 #4967

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 21]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
run: |
npm ci
npm run lint
npm run build
- name: check no diff
run: |
diff_files=$(git diff)
if [[ -n "$diff_files" ]]; then
echo "Diff:"
echo ""
echo "$diff_files"
echo ""
echo "Please run 'npm run build' locally and commit changes."
exit 1
fi