Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 0 additions & 91 deletions .eslintrc.json

This file was deleted.

80 changes: 40 additions & 40 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
name: Build Status

on:
push:
pull_request:
schedule:
# run on sunday nights
- cron: '0 0 * * 0'
pull_request:
schedule:
# run on sunday nights
- cron: "0 0 * * 0"

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x]

steps:
- uses: actions/checkout@v2

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

- name: Install yarn
run: npm install -g yarn

- name: Install dependencies
run: |
yarn

- name: Lint
run: |
yarn lint

- name: Build
run: |
yarn build

- name: Test
run: |
yarn test
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18.x]

steps:
- uses: actions/checkout@v2

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

- name: Install pnpm
run: |
npm install -g pnpm

- name: Install dependencies
run: |
pnpm install

- name: Lint
run: |
pnpm run lint

- name: Build
run: |
pnpm run build

- name: Test
run: |
pnpm run test
80 changes: 40 additions & 40 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
name: Publish Package

on:
release:
types: [created]
release:
types: [created]

jobs:
deploy:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
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 }}

- name: Install yarn
run: npm install -g yarn

- name: Install dependencies
run: |
yarn

- name: Lint
run: |
yarn lint

- name: Build
run: |
yarn build

- name: Test
run: |
yarn test

- name: Publish
run: |
npm publish
deploy:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]

steps:
- uses: actions/checkout@v2

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

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: |
pnpm install

- name: Lint
run: |
pnpm run lint

- name: Build
run: |
pnpm run build

- name: Test
run: |
pnpm run test

- name: Publish
run: |
npm publish
22 changes: 11 additions & 11 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Static code analysis

on: [push, pull_request]
on: [pull_request]

jobs:
semgrep:
name: run-semgrep
runs-on: ubuntu-20.04
container:
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v3
- run: semgrep scan --error --config auto
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
semgrep:
name: run-semgrep
runs-on: ubuntu-20.04
container:
image: returntocorp/semgrep
steps:
- uses: actions/checkout@v3
- run: semgrep scan --error --config auto
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
1 change: 0 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"proseWrap": "always",
"printWidth": 200,
"tabWidth": 4
}
19 changes: 12 additions & 7 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# This is the official list of regular_table authors for copyright purposes.

Andrew Stein <steinlink@gmail.com>
Joshua Hawkins <josh.r.hawk@gmail.com>
JP Morgan Chase
Max Klein <telamonian@hotmail.com>
Tim Paine <t.paine154@gmail.com>
295 Andrew Stein <steinlink@gmail.com>
6 Debajit Datta <debajit.datta2000@gmail.com>
54 Joshua Hawkins <josh.r.hawk@gmail.com>
6 Joshua Hawkins <joshua.r.hawkins@jpmchase.com>
3 Juan Estrella <juan.estrella@finos.org>
1 Lavakush biyani <70131581+lavakush07@users.noreply.github.com>
2 Minh Nguyen <2852660+NMinhNguyen@users.noreply.github.com>
1 Neil Slinger <neil.slinger@gmail.com>
1 Patricio Mancini <patricio.mancini@gmail.com>
13 Tim Paine <t.paine154@gmail.com>
2 jpmtrm <75507096+jpmtrm@users.noreply.github.com>
45 telamonian <telamonian@users.noreply.github.com>
Loading