Skip to content

Commit dda9495

Browse files
committed
feat: full re-write to flat config
1 parent 09cfbd1 commit dda9495

File tree

167 files changed

+2891
-4517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+2891
-4517
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1-
name: CI
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Node.js CI
5+
26
on:
37
- push
48
- pull_request
59
jobs:
610
test:
7-
name: Node.js ${{ matrix.node-version }}
811
runs-on: ubuntu-latest
912
strategy:
10-
fail-fast: false
1113
matrix:
1214
node-version:
1315
- 20
1416
- 18
17+
- 22
18+
- 23
1519
steps:
1620
- uses: actions/checkout@v4
17-
- uses: actions/setup-node@v4
21+
- name: Setup Node
22+
uses: actions/setup-node@v4
1823
with:
1924
node-version: ${{ matrix.node-version }}
20-
- run: npm install --force
25+
- run: npm install
2126
- run: npm test
2227
# - uses: codecov/codecov-action@v1
2328
# if: matrix.node-version == 14

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ test/fixtures/typescript/extends-tsconfig-bases/node_modules/.cache
1010
test/fixtures/typescript/extends-array/node_modules/.cache
1111
.nyc_output
1212
coverage
13+
14+
dist

cli.js

Lines changed: 0 additions & 224 deletions
This file was deleted.

0 commit comments

Comments
 (0)