Skip to content

Commit

Permalink
Switch to GH Actions (#35)
Browse files Browse the repository at this point in the history
* Switch to GH ACtions

* Update README link

* Drop node10 from CI
  • Loading branch information
gpsamson authored Jul 1, 2021
1 parent 3111d4a commit 6e78a5e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 16 deletions.
15 changes: 0 additions & 15 deletions .buildkite/pipeline.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on: [push]

jobs:
test-and-build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x]

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Lint
run: yarn lint

- name: Test
run: yarn test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Language for filtering json streams
<br><br>
</p>

`fql-ts` is a Typescript lexer for [Segment's](https://segment.com) [Filter Query Language](https://github.com/segmentio/fql) (FQL).
`fql-ts` is a Typescript lexer for [Segment's](https://segment.com) [Filter Query Language](https://segment.com/docs/config-api/fql/) (FQL).

The goal is to allow us to use FQL on the browser and generate React components on top of FQL. It could
also be used to give our FQL in-browser REPLs and integrate into existing tooling.
Expand Down

0 comments on commit 6e78a5e

Please sign in to comment.