Skip to content

Add support for firewall non-interactive mode #26

Add support for firewall non-interactive mode

Add support for firewall non-interactive mode #26

Workflow file for this run

name: Tests
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
lint-format-typecheck:
name: Unit and Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Unit Tests
run: npm run test:unit
- name: Integration Tests
run: npm run test:integration