Skip to content

Commit

Permalink
Addressing suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
d-jeffery committed Jul 27, 2023
1 parent 7350a29 commit ac596a6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
dependencies:
patterns:
- "*"
allow:
- dependency-type: "production"
- dependency-type: "production"

18 changes: 13 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
on:
workflow_dispatch:
merge_group:
pull_request:
push:
branches:
- main

jobs:
build:
Expand All @@ -11,11 +12,18 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # 3.7.0
with:
node-version: 16.x
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: xvfb-run -a npm test
if: runner.os == 'Linux'
Expand Down

0 comments on commit ac596a6

Please sign in to comment.