Skip to content

Merge pull request #80 from JohnOluB/feature/rbac-stream-access #90

Merge pull request #80 from JohnOluB/feature/rbac-stream-access

Merge pull request #80 from JohnOluB/feature/rbac-stream-access #90

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint -- --max-warnings 0
- name: Build
run: npm run build
- name: Test (with coverage)
run: npm test