fix impatient not found on bootstrap
This commit is contained in:
parent
33c304f627
commit
074b656cbd
55 changed files with 17472 additions and 1 deletions
22
tree-sitter-lua/.github/workflows/ci.yml
vendored
Normal file
22
tree-sitter-lua/.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2.1.2
|
||||
with:
|
||||
node-version: '16.x'
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Test
|
||||
run: npm run test
|
||||
Loading…
Add table
Add a link
Reference in a new issue