Skip to content

Commit

Permalink
Merge pull request #7 from arobsn/upgrate-tooling
Browse files Browse the repository at this point in the history
Upgrade dev tooling
  • Loading branch information
arobsn authored Jun 30, 2024
2 parents 7861a87 + bdf7c5a commit 3f3cd43
Show file tree
Hide file tree
Showing 18 changed files with 2,120 additions and 8,268 deletions.
24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

6 changes: 0 additions & 6 deletions .github/pull_request_template.md

This file was deleted.

17 changes: 10 additions & 7 deletions .github/workflows/build-and-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,19 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18, 20]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- run: npm test
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm test:unit
10 changes: 0 additions & 10 deletions .prettierrc

This file was deleted.

3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions _config.yml

This file was deleted.

36 changes: 36 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.2/schema.json",
"files": {
"ignore": [
"**/coverage/*",
"**/dist/*",
"**/node_modules/*",
"**/_test-vectors/mockedGraphQLBoxResponses.json",
"**/package.json"
]
},
"organizeImports": {
"enabled": true
},
"formatter": {
"indentStyle": "space"
},
"javascript": {
"formatter": {
"trailingCommas": "none"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noParameterAssign": { "level": "off" }
},
"suspicious": {
"noConsoleLog": { "level": "error" },
"noAssignInExpressions": { "level": "off" }
}
}
}
}
Loading

0 comments on commit 3f3cd43

Please sign in to comment.