Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node 16 #7

Merged
merged 28 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c7b749e
Update @fabric/core to feature/node-16
martindale Jun 1, 2022
8c39919
Update package-lock.json
martindale Jun 1, 2022
a798b9f
Migrate to FeedMonitor, App-like definition
martindale Jun 1, 2022
48a1c67
Smooth out use of FeedMonitor
martindale Jun 1, 2022
d71103f
build: add externals
victorwu Jun 1, 2022
9475b77
feature: add FabricBridge component
victorwu Jun 1, 2022
129a0e8
build: add FabricBridge as global external
victorwu Jun 1, 2022
1a39657
Format Feed component, regenerate build
martindale Jun 1, 2022
9daff57
fix: bad merge: closing block; brackets in rollup config
victorwu Jun 1, 2022
a7c3430
Merge branch 'feature/fabric' of github.com:victorwu/portal-feed into…
martindale Jun 1, 2022
ba3e3e6
Merge branch 'feature/fabric-components' of github.com:victorwu/porta…
martindale Jun 1, 2022
8c0a69e
Remove unnecessary import from React
martindale Jun 1, 2022
211653a
Generate working build
martindale Jun 1, 2022
0cb9a2c
Update package-lock.json
martindale Jun 1, 2022
49cfd6b
Add new weighted estimate method
martindale Jun 1, 2022
d364d4a
Add test GitHub Workflow (tm)
martindale Jun 3, 2022
b3b8ee9
fix: build issues from react not importing https://github.com/rollup/…
victorwu Jun 6, 2022
0a9ad85
Add missing lodash.merge
martindale Jun 7, 2022
1e20803
Improve coverage, test flow
martindale Jun 9, 2022
8bbdb97
Add Quote, Rate components
martindale Jun 9, 2022
0b54e45
Update general UI
martindale Jun 9, 2022
710ae40
Add "states" map to local store
martindale Jun 9, 2022
f8333b6
Add "history" array to local store
martindale Jun 9, 2022
333bcd6
Update tests, settings
martindale Jun 9, 2022
72f6f07
Stop HTTP server
martindale Jun 9, 2022
56531bf
Fix various warnings
martindale Jun 9, 2022
1be39c6
Include missing changes
martindale Jun 9, 2022
419cfd5
Use htmlFor instead of for
martindale Jun 9, 2022
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
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: npm test
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v3
- name: setup node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
Loading