From ed0d55aa68c6ff7c3d80423900eaf214ff22a63f Mon Sep 17 00:00:00 2001 From: Thomas Monfre Date: Thu, 29 Apr 2021 13:01:40 -0400 Subject: [PATCH 1/2] feat: switch to GH actions for CI instead of buildkite --- .github/workflows/integration.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/integration.yaml diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml new file mode 100644 index 0000000..ce94c1c --- /dev/null +++ b/.github/workflows/integration.yaml @@ -0,0 +1,19 @@ +name: Continuous Integration +on: [push, pull_request] + +jobs: + test_pull_request: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [12.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: yarn install + - run: yarn test \ No newline at end of file From a81a9cc79293e2959acfe61f6d85bf760f3af597 Mon Sep 17 00:00:00 2001 From: Thomas Monfre Date: Thu, 29 Apr 2021 13:09:13 -0400 Subject: [PATCH 2/2] chore: CI node version 14 --- .github/workflows/integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index ce94c1c..f5b7913 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v2