Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Bump @types/node from 20.4.5 to 20.12.7 #372

Bump @types/node from 20.4.5 to 20.12.7

Bump @types/node from 20.4.5 to 20.12.7 #372

Workflow file for this run

name: Build & Test
on: [ push ]
jobs:
build:
name: Build 🏗️ & Test 🧪
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize Node
uses: actions/setup-node@v3
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: Install deps
run: npm ci
- name: Build application
run: npm run build
- name: Run tests
run: npm run test