From d39e5cf0b20f4819c871d561032e73cbced4bf1d Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Mon, 12 Aug 2024 23:49:20 -0500 Subject: [PATCH 1/2] ci: introduces basic CI pipeline --- .github/workflows/CI.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..0887493 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + branches: main + pull_request: + +jobs: + format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: latest + - run: npx prettier . --check From 0fcd234c7367087e6c475479b90d4d2aa066b721 Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Mon, 12 Aug 2024 23:50:49 -0500 Subject: [PATCH 2/2] chore: fixes some `prettier` lints --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 76f6f8c..cb9f7c2 100644 --- a/README.md +++ b/README.md @@ -49,13 +49,13 @@ by setting the `sprocket.server.path` configuration option. ## 🎨 Features -* **Basic syntax highlighting** using a complete and up-to-date [TextMate +- **Basic syntax highlighting** using a complete and up-to-date [TextMate grammar](https://macromates.com/manual/en/language_grammars). _This grammar is slated to drive GitHub's syntax highlighting for WDL files [in a future release](https://github.com/github-linguist/linguist/pull/6972)_. -* **Document and workspace diagnostics** courtesy of the language server protocol +- **Document and workspace diagnostics** courtesy of the language server protocol implementation provided by`sprocket analyzer`. -* **Code snippets** for common WDL constructs and conventions. +- **Code snippets** for common WDL constructs and conventions. _**Note:** more features will be added as `sprocket` is developed. Please check out the activity on the [Sprocket repository](https://github.com/stjude-rust-labs/sprocket) to @@ -121,7 +121,6 @@ yarn compile This command will automatically be run when you start the extension in the development environment or when packaging the extension. - ## Running The Development Extension To run the extension, open this directory in VS Code and press `F5`.