Skip to content

Added removePolicy and listPolicies methods to PolicyPipeline to allow for easier modification and inspection of the pipeline's policies. #82

Added removePolicy and listPolicies methods to PolicyPipeline to allow for easier modification and inspection of the pipeline's policies.

Added removePolicy and listPolicies methods to PolicyPipeline to allow for easier modification and inspection of the pipeline's policies. #82

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Check formatting
run: npm run format
- name: Compile typescript
run: npm run build
- name: Run tests
run: npm test