Skip to content

Chore(deps-dev): Bump @types/jest from 29.5.9 to 29.5.10 #215

Chore(deps-dev): Bump @types/jest from 29.5.9 to 29.5.10

Chore(deps-dev): Bump @types/jest from 29.5.9 to 29.5.10 #215

Workflow file for this run

name: Build Application
on: [pull_request]
env:
NODE_VERSION: 18.x
jobs:
build:
name: Build application with Node.js 18.x
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Get NPM Cache Directory
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- name: Restore NPM Cache
uses: actions/cache/restore@v3
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: node-cache-${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
node-cache-${{ runner.os }}-npm-
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Dependencies
run: npm ci --cache ${{ steps.npm-cache-dir.outputs.dir }} --prefer-offline
- name: Build Application
run: npm run build