Skip to content

Commit

Permalink
chore: update ci node version to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Oct 17, 2024
1 parent fe6197d commit dbb272a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Use node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16]
node: [20]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion packages/language-server/build.mts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const opts: BuildOptions = {
outdir: "dist",
outbase: "src",
platform: "node",
target: ["node16"],
target: ["node20"],
sourcemap: "linked",
entryPoints: ["src/index.ts"],
absWorkingDir: path.dirname(fileURLToPath(import.meta.url)),
Expand Down

0 comments on commit dbb272a

Please sign in to comment.