Skip to content

Bump @types/node from 20.14.2 to 20.14.5 #1056

Bump @types/node from 20.14.2 to 20.14.5

Bump @types/node from 20.14.2 to 20.14.5 #1056

Workflow file for this run

name: Build and Checks
on:
pull_request:
paths-ignore:
- '**.md'
- 'imgs\*'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'
- 'imgs\*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
name: Set Node.js 20.x
with:
node-version: 20.x
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run lint
# When you reference an action with `uses:` in a workflow, `dist\index.js` is the code that will run.
# This file is generated through a build process from other source files `src\index.ts`.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
check-dist:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm ci
- name: Rebuild the index.js file
run: npm run build
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi
# If dist/ was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v3
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/