Skip to content

refactor: use @openally/config.typescript and cleanup configs & types #21

refactor: use @openally/config.typescript and cleanup configs & types

refactor: use @openally/config.typescript and cleanup configs & types #21

Workflow file for this run

name: Config CI
on:
push:
branches: [main]
paths:
- src/config/**
pull_request:
paths:
- src/config/**
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test --workspace=src/config