Skip to content

build(deps-dev): Bump @types/node from 22.10.2 to 22.10.6 #74

build(deps-dev): Bump @types/node from 22.10.2 to 22.10.6

build(deps-dev): Bump @types/node from 22.10.2 to 22.10.6 #74

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
checks: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js & npm
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Run Build Script
run: npm run build
- name: Run Tests
run: npm run test:ci
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Jest Tests
path: junit.xml
reporter: jest-junit