Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: introduces basic CI pipeline #6

Merged
merged 2 commits into from
Aug 15, 2024
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
16 changes: 16 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -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
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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`.
Expand Down