Skip to content

Bump @types/node from 22.5.5 to 22.7.4 #136

Bump @types/node from 22.5.5 to 22.7.4

Bump @types/node from 22.5.5 to 22.7.4 #136

Workflow file for this run

# This Continuous Integration (CI) pipeline lints, builds, and tests the code when a Pull Request is
# created or a commit is pushed to a Prod branch
name: CI
on:
push:
branches: ["main", "1.x.x"]
pull_request:
branches: ["main", "1.x.x"]
jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Get Node Version
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit Tests
run: npm test