An open API service indexing awesome lists of open source software.

https://github.com/disrupted/tree-sitter-github-bash

GitHub Actions Bash grammar for tree-sitter (fork of tree-sitter-bash)
https://github.com/disrupted/tree-sitter-github-bash

tree-sitter-parser

Last synced: 5 months ago
JSON representation

GitHub Actions Bash grammar for tree-sitter (fork of tree-sitter-bash)

Awesome Lists containing this project

README

          

# tree-sitter-bash

[![CI](https://github.com/tree-sitter/tree-sitter-bash/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-bash/actions/workflows/ci.yml)

Bash grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter).

## Development

Install the dependencies:

```sh
npm install
```

Build and run the tests:

```sh
npm run build
npm run test
```

Run the build and tests in watch mode:

```sh
npm run test:watch
```

### References

- [Bash man page](http://man7.org/linux/man-pages/man1/bash.1.html#SHELL_GRAMMAR)
- [Shell command language specification](http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html)
- [mvdnan/sh - a shell parser in go](https://github.com/mvdan/sh)