Skip to content

Add repository standards: CODE_OF_CONDUCT, SECURITY policy, and .editorconfig #1243

Add repository standards: CODE_OF_CONDUCT, SECURITY policy, and .editorconfig

Add repository standards: CODE_OF_CONDUCT, SECURITY policy, and .editorconfig #1243

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: CI checks
run: node scripts/ci.js