Skip to content

Bump @types/node from 20.0.0 to 22.8.1 #14

Bump @types/node from 20.0.0 to 22.8.1

Bump @types/node from 20.0.0 to 22.8.1 #14

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-build:
name: Run Build
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run build
run: npm run build