Configuring tests on GH actions

pull/48/head
Wilfred Hughes 2021-08-15 10:18:05 +07:00
parent 01f453ab81
commit 00ab8947d3
2 changed files with 27 additions and 1 deletions

@ -0,0 +1,26 @@
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test

@ -4,7 +4,7 @@
"description": "tree-sitter grammar for Emacs Lisp",
"main": "bindings/node",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "tree-sitter test"
},
"author": "",
"license": "MIT",