Skip to content

Bump @types/jest from 29.5.4 to 29.5.8 #602

Bump @types/jest from 29.5.4 to 29.5.8

Bump @types/jest from 29.5.4 to 29.5.8 #602

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node.js
uses: actions/[email protected]
with:
node-version: 16.x
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Format
run: npm run format-check
- name: Lint
run: npm run lint
- name: Package
run: npm run package
- name: Check Tests
run: npm run test
# `dist/index.js` is a special file in Actions.
# When you reference an action with `uses:` in a workflow,
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
- name: Check Package
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
id: diff
# If index.js was different than expected, upload the expected version as an artifact
- name: Upload "Check Package" Artifacts
uses: actions/upload-artifact@v3
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/