From 4dd52c23b9bb83cc842676c9db3cde0ae844739b Mon Sep 17 00:00:00 2001 From: Nicolas Merget Date: Fri, 20 Sep 2024 23:03:16 +0200 Subject: [PATCH 1/3] fix: styling from home content --- docs/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 0ccac80..99a2c59 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,12 +4,14 @@ hide: - toc --- -# GodotJS - JavaScript language binding for Godot game engine +# **GodotJS** + +***-- JavaScript and TypeScript language binding for Godot game engine --*** This module implements JavaScript/TypeScript language support for the Godot game engine using [QuickJS](https://bellard.org/quickjs/) as the JavaScript engine. -### Getting started +## Getting started Read the [getting-started](https://godotjs.github.io/documentation/getting-started/). From 67b615bb1682a2accc07b5c84a8286326094bfec Mon Sep 17 00:00:00 2001 From: Nicolas Merget Date: Fri, 20 Sep 2024 23:05:42 +0200 Subject: [PATCH 2/3] chore: update cicd --- .github/workflows/default.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/default.yml diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml new file mode 100644 index 0000000..3160671 --- /dev/null +++ b/.github/workflows/default.yml @@ -0,0 +1,25 @@ +name: 🔨 Build mkdocs +on: + pull_request: + +concurrency: + group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-runner + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV + - uses: actions/cache@v3 + with: + key: mkdocs-material-${{ env.cache_id }} + path: .cache + restore-keys: | + mkdocs-material- + - run: pip install mkdocs-material + - run: mkdocs build From 857d70313671cc7d458191eee2971c583cec1fc7 Mon Sep 17 00:00:00 2001 From: Nicolas Merget Date: Fri, 20 Sep 2024 23:06:44 +0200 Subject: [PATCH 3/3] chore: rename deploy to build --- .github/workflows/default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 3160671..3ed2d63 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -7,7 +7,7 @@ concurrency: cancel-in-progress: true jobs: - deploy: + build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4