Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 15 additions & 15 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Setup
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '18.x'
- uses: actions/cache@v2
node-version: '24.x'
- uses: actions/cache@v5
id: yarn-cache
with:
path: node_modules
Expand All @@ -33,7 +33,7 @@ jobs:
POSTGRES_USER: postgres
services:
postgres:
image: postgres:10.8
image: postgres:18.4
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -44,12 +44,12 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Setup
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '18.x'
- uses: actions/cache@v2
node-version: '24.x'
- uses: actions/cache@v5
id: yarn-cache
with:
path: node_modules
Expand All @@ -65,19 +65,19 @@ jobs:
run: yarn run migrate
- name: Test
run: yarn test

publish:
name: Publish
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Setup
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: '18.x'
- uses: actions/cache@v2
node-version: '24.x'
- uses: actions/cache@v5
id: yarn-cache
with:
path: node_modules
Expand All @@ -94,4 +94,4 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: yarn release
run: yarn release
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"adminjs": "^7.0.0",
"adminjs": "^7.8.17",
"chai": "^4.3.7",
"class-validator": "^0.14.0",
"eslint": "^8.36.0",
Expand All @@ -64,13 +64,13 @@
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.2.5",
"mocha": "^10.2.0",
"mocha": "^11.7.6",
"pg": "^8.10.0",
"semantic-release": "^20.1.3",
"semantic-release-slack-bot": "^4.0.0",
"ts-node": "^10.9.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.2",
"typeorm": "^0.3.12",
"typescript": "^4.9.5"
"typescript": "^6.0.3"
}
}
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@
"module": "nodenext",
"target": "esnext",
"lib": ["esnext", "DOM"],
"types": ["node", "mocha"],
"ignoreDeprecations": "6.0",
"strict": false,
"skipLibCheck": true,
"sourceMap": true,
"noImplicitAny": false,
"strictNullChecks": true,
"esModuleInterop": true,
"declaration": true,
"rootDir": "./src",
"declarationDir": "./lib",
"outDir": "./lib",
"emitDecoratorMetadata": true,
Expand Down
Loading