Skip to content

Commit

Permalink
Merge pull request #8 from FabricLabs/feature/spec
Browse files Browse the repository at this point in the history
1.0.0 RC1
  • Loading branch information
martindale authored Nov 8, 2024
2 parents 33d7fc6 + a166ef7 commit adae74e
Show file tree
Hide file tree
Showing 965 changed files with 469,130 additions and 185,450 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env", "@babel/preset-react"]
}
13 changes: 10 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,36 @@ on:
push:
branches:
- master
- beta
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Install Node.js on ${{ matrix.os }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
env:
PUPPETEER_SKIP_DOWNLOAD: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: npm ci
- name: Generate coverage report
run: npm run report:coverage
- name: Send coverage report
uses: codecov/codecov-action@v3.1.1
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./reports/
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ results

npm-debug.log
node_modules

settings/local.js
documents/templates

.venv/
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.17.1
v18.19.0
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dist: focal
language: node_js
node_js:
- 16.15.0
- 18.19.0
before_install:
- npm install -g codecov
after_success:
Expand Down
Loading

0 comments on commit adae74e

Please sign in to comment.