Skip to content

Commit 5bbe16c

Browse files
committed
Spring cleaning
1 parent 62f1519 commit 5bbe16c

File tree

70 files changed

+4087
-10532
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+4087
-10532
lines changed

.eslintrc.json

Lines changed: 0 additions & 91 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
name: Build Status
22

33
on:
4-
push:
5-
pull_request:
6-
schedule:
7-
# run on sunday nights
8-
- cron: '0 0 * * 0'
4+
pull_request:
5+
schedule:
6+
# run on sunday nights
7+
- cron: "0 0 * * 0"
98

109
jobs:
11-
build:
12-
runs-on: ${{ matrix.os }}
13-
14-
strategy:
15-
matrix:
16-
os: [ubuntu-latest]
17-
# os: [ubuntu-latest, macos-latest, windows-latest]
18-
node-version: [16.x]
19-
20-
steps:
21-
- uses: actions/checkout@v2
22-
23-
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
25-
with:
26-
node-version: ${{ matrix.node-version }}
27-
28-
- name: Install yarn
29-
run: npm install -g yarn
30-
31-
- name: Install dependencies
32-
run: |
33-
yarn
34-
35-
- name: Lint
36-
run: |
37-
yarn lint
38-
39-
- name: Build
40-
run: |
41-
yarn build
42-
43-
- name: Test
44-
run: |
45-
yarn test
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest]
16+
# os: [ubuntu-latest, macos-latest, windows-latest]
17+
node-version: [18.x]
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
27+
- name: Install pnpm
28+
run: |
29+
npm install -g pnpm
30+
31+
- name: Install dependencies
32+
run: |
33+
pnpm install
34+
35+
- name: Lint
36+
run: |
37+
pnpm run lint
38+
39+
- name: Build
40+
run: |
41+
pnpm run build
42+
43+
- name: Test
44+
run: |
45+
pnpm run test

.github/workflows/publish.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
name: Publish Package
22

33
on:
4-
release:
5-
types: [created]
4+
release:
5+
types: [created]
66

77
jobs:
8-
deploy:
9-
runs-on: ${{ matrix.os }}
10-
11-
strategy:
12-
matrix:
13-
os: [ubuntu-latest]
14-
node-version: [12.x]
15-
16-
steps:
17-
- uses: actions/checkout@v2
18-
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
21-
with:
22-
node-version: ${{ matrix.node-version }}
23-
24-
- name: Install yarn
25-
run: npm install -g yarn
26-
27-
- name: Install dependencies
28-
run: |
29-
yarn
30-
31-
- name: Lint
32-
run: |
33-
yarn lint
34-
35-
- name: Build
36-
run: |
37-
yarn build
38-
39-
- name: Test
40-
run: |
41-
yarn test
42-
43-
- name: Publish
44-
run: |
45-
npm publish
8+
deploy:
9+
runs-on: ${{ matrix.os }}
10+
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest]
14+
node-version: [18.x]
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
24+
- name: Install pnpm
25+
run: npm install -g pnpm
26+
27+
- name: Install dependencies
28+
run: |
29+
pnpm install
30+
31+
- name: Lint
32+
run: |
33+
pnpm run lint
34+
35+
- name: Build
36+
run: |
37+
pnpm run build
38+
39+
- name: Test
40+
run: |
41+
pnpm run test
42+
43+
- name: Publish
44+
run: |
45+
npm publish

.github/workflows/semgrep.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: Static code analysis
22

3-
on: [push, pull_request]
3+
on: [pull_request]
44

55
jobs:
6-
semgrep:
7-
name: run-semgrep
8-
runs-on: ubuntu-20.04
9-
container:
10-
image: returntocorp/semgrep
11-
steps:
12-
- uses: actions/checkout@v3
13-
- run: semgrep scan --error --config auto
14-
env:
15-
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
6+
semgrep:
7+
name: run-semgrep
8+
runs-on: ubuntu-20.04
9+
container:
10+
image: returntocorp/semgrep
11+
steps:
12+
- uses: actions/checkout@v3
13+
- run: semgrep scan --error --config auto
14+
env:
15+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

.prettierrc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"proseWrap": "always",
3-
"printWidth": 200,
43
"tabWidth": 4
54
}

AUTHORS

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
# This is the official list of regular_table authors for copyright purposes.
2-
3-
Andrew Stein <steinlink@gmail.com>
4-
Joshua Hawkins <josh.r.hawk@gmail.com>
5-
JP Morgan Chase
6-
Max Klein <telamonian@hotmail.com>
7-
Tim Paine <t.paine154@gmail.com>
1+
295 Andrew Stein <steinlink@gmail.com>
2+
6 Debajit Datta <debajit.datta2000@gmail.com>
3+
54 Joshua Hawkins <josh.r.hawk@gmail.com>
4+
6 Joshua Hawkins <joshua.r.hawkins@jpmchase.com>
5+
3 Juan Estrella <juan.estrella@finos.org>
6+
1 Lavakush biyani <70131581+lavakush07@users.noreply.github.com>
7+
2 Minh Nguyen <2852660+NMinhNguyen@users.noreply.github.com>
8+
1 Neil Slinger <neil.slinger@gmail.com>
9+
1 Patricio Mancini <patricio.mancini@gmail.com>
10+
13 Tim Paine <t.paine154@gmail.com>
11+
2 jpmtrm <75507096+jpmtrm@users.noreply.github.com>
12+
45 telamonian <telamonian@users.noreply.github.com>

0 commit comments

Comments
 (0)