Skip to content

Commit

Permalink
chore: sync up a few more things
Browse files Browse the repository at this point in the history
  • Loading branch information
spence-s committed Jan 14, 2025
1 parent 746381d commit 6cdbe1e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
8 changes: 6 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
root = true

[*]
indent_style = space
indent_size = 2
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true


[*.yml]
indent_style = space
indent_size = 2
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
name: Node.js CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
- push
- pull_request

jobs:
build:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18, 20, 22, 23]
name: Node ${{ matrix.node-version }}
node-version:
- 20
- 18
- 22
- 23
steps:
- uses: actions/checkout@v4
- name: Setup Node
Expand Down
2 changes: 1 addition & 1 deletion lib/cli.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node --no-warnings=ExperimentalWarning
#!/usr/bin/env node
// no-use-extend-native plugin creates an experimental warning so we silence it
// https://github.com/nodejs/node/issues/30810#issuecomment-1893682691

Expand Down

0 comments on commit 6cdbe1e

Please sign in to comment.