Skip to content

Commit

Permalink
Merge pull request #38 from joshghent/upgrade-and-fix
Browse files Browse the repository at this point in the history
upgrade dependencies and fix issues with log rotation
  • Loading branch information
joshghent authored Dec 16, 2024
2 parents 0529f1c + b33fe7a commit a789237
Show file tree
Hide file tree
Showing 114 changed files with 149,047 additions and 31,210 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/auto-update-image-count.yml

This file was deleted.

30 changes: 12 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Test & Lint

on:
pull_request:
on: [pull_request]

permissions:
actions: read
contents: read
id-token: write

jobs:
test:
Expand All @@ -10,24 +14,14 @@ jobs:
- uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
uses: actions/setup-node@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
node-version: '20.x'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'

- name: Install
run: yarn
run: yarn install --frozen-lockfile --prefer-offline

- name: Build Server
run: yarn run build:server
Expand Down
8 changes: 6 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
"titleBar.activeBackground": "#4b46c8",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#4b46c899",
"titleBar.inactiveForeground": "#e7e7e799"
"titleBar.inactiveForeground": "#e7e7e799",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#716dd4",
"statusBarItem.remoteBackground": "#4b46c8",
"statusBarItem.remoteForeground": "#e7e7e7"
},
"peacock.color": "#4b46c8"
}
}
Loading

0 comments on commit a789237

Please sign in to comment.