fix: add block chomping for yaml store model field #545
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_call: | |
workflow_dispatch: | |
merge_group: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
fetch-depth: 0 | |
- name: Install Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # 4.0.2 | |
with: | |
node-version: 20.x | |
registry-url: "https://registry.npmjs.org" | |
scope: "@openfga" | |
always-auth: false | |
cache: "npm" | |
cache-dependency-path: ./package-lock.json | |
- run: npm install | |
- run: npm run lint -- --ignore-path .galintignore | |
- run: npm audit | |
continue-on-error: true | |
build: | |
needs: lint | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
fetch-depth: 0 | |
- name: Install Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # 4.0.2 | |
with: | |
node-version: 20.x | |
registry-url: "https://registry.npmjs.org" | |
scope: "@openfga" | |
always-auth: false | |
cache: "npm" | |
cache-dependency-path: ./package-lock.json | |
- run: npm install | |
- run: npx playwright install | |
- run: npm run compile | |
- run: xvfb-run -a npm test | |
if: runner.os == 'Linux' | |
- run: npm test | |
if: runner.os != 'Linux' |