Skip to content

Commit

Permalink
add graph workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed Jan 25, 2024
1 parent c718f12 commit 9ee803a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Graph
on:
schedule:
- cron: "0 3 * * *"

jobs:
Run_graph:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node_version: ["20"]
java: ["17"]
fail-fast: false
env:
NX_VERBOSE_LOGGING: "true"
NX_MAVEN_CLI_OPTS: "--no-transfer-progress -Dmaven.plugin.validation=VERBOSE"
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: nrwl/nx-set-shas@v3

- name: Set up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: "npm"

- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i

- name: Graph
run: npm run nx graph --file=graph.json

0 comments on commit 9ee803a

Please sign in to comment.