Skip to content

Refactor: improve compatibility with opa clients and tests #12

Refactor: improve compatibility with opa clients and tests

Refactor: improve compatibility with opa clients and tests #12

Workflow file for this run

name: Lint
on:
push:
paths-ignore:
- '*.md'
pull_request:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up node v20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
cache-dependency-path: package.json
- name: Install dependencies
run: npm install
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Run lint
run: npm run lint