Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: CI - nx-graph-to-mermaid
name: CI - JavaScript/Typescript/Node Projects

on:
push:
branches: [ main ]
paths:
- 'javascript/nx-graph-to-mermaid/**'
- 'javascript/**'
pull_request:
paths:
- 'javascript/nx-graph-to-mermaid/**'
- 'javascript/**'

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
working-directory: javascript/nx-graph-to-mermaid
working-directory: javascript

steps:
- name: Checkout repository
Expand All @@ -26,14 +26,14 @@ jobs:
with:
node-version: 20
cache: npm
cache-dependency-path: javascript/nx-graph-to-mermaid/package-lock.json
cache-dependency-path: javascript/package-lock.json

- name: Install dependencies
run: npm ci

- name: Build
- name: Run Tests (all workspaces)
run: npm run build

- name: Test
run: npm test

- name: Check Changesets (PR only)
if: github.event_name == 'pull_request'
run: npx changeset status
39 changes: 0 additions & 39 deletions .github/workflows/update-markdown-toc-ci.yml

This file was deleted.

8 changes: 8 additions & 0 deletions javascript/.changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
18 changes: 18 additions & 0 deletions javascript/.changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [
[
"@datalackey/update-markdown-toc",
"@datalackey/nx-graph-to-mermaid",
"@datalackey/autogen-markdown-doc"
]
],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}

Loading
Loading