Skip to content

build(npm): Enable 'ignore-scripts' config #61

build(npm): Enable 'ignore-scripts' config

build(npm): Enable 'ignore-scripts' config #61

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: General checks
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
- name: Use Node.js 22
uses: actions/setup-node@v5
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Perform Prettier check
run: npm run prettier:check
- name: Perform Licenses check
run: npm run check-licenses
- name: Perform dependency check
run: npm run depcheck