Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22",
"image": "mcr.microsoft.com/devcontainers/javascript-node:24",
"features": {
"ghcr.io/tailscale/codespace/tailscale": {},
"ghcr.io/devcontainers-extra/features/wireguard-apt-get:1": {}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x, 22.x, 24.x ]
node-version: [ 22.x, 24.x ]
steps:
- uses: actions/checkout@v6
Comment thread
michaelahern marked this conversation as resolved.
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v5
Comment thread
michaelahern marked this conversation as resolved.
- uses: actions/setup-node@v6
with:
Comment thread
michaelahern marked this conversation as resolved.
node-version: 24.x
Expand Down
3 changes: 2 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { defineConfig } from 'eslint/config';
import js from '@eslint/js';
import json from '@eslint/json';
import jsonc from 'eslint-plugin-jsonc';
Expand All @@ -6,7 +7,7 @@ import stylistic from '@stylistic/eslint-plugin';
import ts from 'typescript-eslint';
import yml from 'eslint-plugin-yml';

export default ts.config([
export default defineConfig([
{
name: 'global-ignore',
ignores: ['./lib', '**/package-lock.json']
Expand Down
Loading
Loading