Update node package versions #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: quickbms-lsp | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: nightly-2021-01-27 | |
default: true | |
components: rustfmt | |
- name: Install tree-sitter | |
run: cd tree-sitter-quickbms && npm install --save-dev tree-sitter-cli | |
- name: Construct parser | |
run: make grammar | |
- name: Test grammar | |
run: make test | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose |