Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Spruce up: Upgrade deps, update Victoria gov calendar URL (#40)
Browse files Browse the repository at this point in the history
### Changes

* Upgrade Node to 20
* Upgrade all deps except `node-fetch` which is currently on 2.x. 3.x is
ESM only which messed with our TS config in a way that I couldn't find a
non-ugly fix. Since native `fetch` is stable in NodeJS 21 I think we
just leave `node-fetch` alone until we can upgrade to the native one.
* Upgrade the Vic Gov calendar URL - it was moved at some point.
  • Loading branch information
eoinkelly authored Dec 24, 2023
1 parent b08eda8 commit bb18126
Show file tree
Hide file tree
Showing 6 changed files with 12,686 additions and 7,422 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'

- run: npm ci
Expand All @@ -30,14 +30,14 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'

- run: npm ci
- run: npm run typecheck

test:
name: Test on ${{ matrix.os }} using Node.js v16
name: Test on ${{ matrix.os }} using Node.js v20
strategy:
fail-fast: false
matrix:
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
cache: 'npm'

- run: npm ci
Expand Down
Loading

0 comments on commit bb18126

Please sign in to comment.