Skip to content

chore: bump @types/node from 20.14.2 to 20.14.5 #782

chore: bump @types/node from 20.14.2 to 20.14.5

chore: bump @types/node from 20.14.2 to 20.14.5 #782

Workflow file for this run

name: NodeJS
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run lint
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm test
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run build