Github actions

This commit is contained in:
Kenny Daniel 2023-12-29 11:27:16 -08:00
parent 4bd1f09897
commit bd05faa702
No known key found for this signature in database
GPG Key ID: 6A3C5E318BE71391
2 changed files with 18 additions and 1 deletions

14
.github/workflows/ci.yml vendored Normal file

@ -0,0 +1,14 @@
name: CI
on:
pull_request:
push:
jobs:
hyllama:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm i
- run: npm run build
- run: npm run lint
- run: npm test

@ -1,5 +1,8 @@
# hyparquet
[![mit license](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![workflow status](https://github.com/hyparam/hyparquet/actions/workflows/ci.yml/badge.svg)](https://github.com/hyparam/hyparquet/actions)
JavaScript parser for apache parquet files.
JavaScript parser for [Apache Parquet](https://parquet.apache.org) files.
Apache Parquet is an open source, column-oriented data file format designed for efficient data storage and retrieval.