Skip to content

Commit

Permalink
chore: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvolek committed Sep 20, 2024
2 parents f4cf16b + 67dee59 commit d804353
Show file tree
Hide file tree
Showing 63 changed files with 64,939 additions and 20,305 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/check-generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v1'
- uses: "actions/checkout@v1"
with:
fetch-depth: 2
- uses: borales/actions-yarn@v3.0.0
with:
cmd: install
- uses: borales/actions-yarn@v3.0.0
with:
cmd: run bundle
cmd: run build
- name: Check diff
run: git diff --quiet || { echo "You forgot to run 'yarn run bundle && yarn run generate-types'"; exit 1; }
run: git diff
# run: git diff --quiet || { echo "You forgot to run 'yarn run build'"; exit 1; }

name: Generated content is up to date
on:
Expand Down
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
docs
.DS_Store

# Logs
Expand Down Expand Up @@ -134,4 +133,7 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

rust/src/docs
rust/target
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
generated-types.ts
lib
coverage
17 changes: 9 additions & 8 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"printWidth": 80,
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false
"printWidth": 80,
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": false,
"semi": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false,
"endOfLine": "auto"
}
Loading

0 comments on commit d804353

Please sign in to comment.