Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Oct 1, 2023
1 parent 3a5c1d4 commit d0c7c4c
Show file tree
Hide file tree
Showing 4 changed files with 323 additions and 311 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@ on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,21 @@ jobs:
create_release:
name: Create release and publish
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
if: github.event_name == 'push' && startsWith(github.event.head_commit.message, 'chore(release)') && !contains(github.event.head_commit.message, '[skip ci]')

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Use Node.js 18
uses: actions/setup-node@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 18
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@
},
"devDependencies": {
"@casperiv/eslint-config": "^8.0.0",
"@citizenfx/client": "^2.0.6645-1",
"@citizenfx/server": "^2.0.6643-1",
"@types/archiver": "^5.3.2",
"@types/node": "^20.5.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/parser": "^6.4.0",
"@citizenfx/client": "^2.0.6736-1",
"@citizenfx/server": "^2.0.6736-1",
"@types/archiver": "^5.3.3",
"@types/node": "^20.8.0",
"@types/ws": "^8.5.6",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"esbuild": "^0.19.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@octokit/action": "^6.0.5",
"archiver": "^6.0.0",
"@octokit/action": "^6.0.6",
"archiver": "^6.0.1",
"socket.io": "^4.7.2"
},
"prettier": {
Expand All @@ -48,4 +48,4 @@
"printWidth": 100,
"tabWidth": 2
}
}
}
Loading

0 comments on commit d0c7c4c

Please sign in to comment.