Skip to content

Commit 843c689

Browse files
committed
chore: housekeeping, bump all (dev) deps
1 parent 16fcea1 commit 843c689

54 files changed

Lines changed: 19158 additions & 17826 deletions

Some content is hidden

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

.codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"node": "18",
2+
"node": "22",
33
"sandboxes": []
44
}

.eslintrc

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

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* text=auto eol=lf
2-
pnpm-lock.yaml -diff
2+
yarn.lock -diff
33

44
packages/sql/test/fixtures-eol/556.sql text=auto eol=crlf
55
packages/sql/test/fixtures-eol/559.sql text=auto eol=crlf

.github/workflows/autofix.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: autofix.ci # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci".
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
autofix:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout Repo
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
21+
- name: Setup Node.js LTS
22+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
23+
with:
24+
node-version: lts/*
25+
cache: yarn
26+
27+
- name: Install dependencies
28+
run: yarn --immutable
29+
30+
- name: Format Codes
31+
run: yarn format
32+
33+
- name: Apply autofix.ci
34+
uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1
35+
with:
36+
fail-fast: false

.github/workflows/ci.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
- push
55
- pull_request
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
ci:
913
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
@@ -13,6 +17,7 @@ jobs:
1317
- 16
1418
- 18
1519
- 20
20+
- 22
1621
os:
1722
- macos-latest
1823
- ubuntu-latest
@@ -22,23 +27,21 @@ jobs:
2227
- name: Checkout Repo
2328
uses: actions/checkout@v4
2429

25-
- name: Setup pnpm
26-
uses: pnpm/action-setup@v4
27-
2830
- name: Setup Node.js ${{ matrix.node }}
2931
uses: actions/setup-node@v4
3032
with:
3133
node-version: ${{ matrix.node }}
32-
cache: pnpm
34+
cache: yarn
3335

3436
- name: Install Dependencies
35-
run: pnpm i
37+
run: yarn --immutable
3638

3739
- name: Build, Lint and Test
38-
run: pnpm run-s build lint test
40+
run: yarn run-s build lint test
3941
env:
40-
EFF_NO_LINK_RULES: true
4142
PARSER_NO_WATCH: true
4243

4344
- name: Codecov
44-
uses: codecov/codecov-action@v3
45+
uses: codecov/codecov-action@v5
46+
with:
47+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql.yml

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

.github/workflows/pkg-pr-new.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish Any Commit
2+
on:
3+
- push
4+
- pull_request
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
publish:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17+
18+
- name: Setup Node.js LTS
19+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
20+
with:
21+
node-version: lts/*
22+
cache: yarn
23+
24+
- name: Install dependencies
25+
run: yarn --immutable
26+
27+
- name: Build
28+
run: yarn build
29+
30+
- name: Publish
31+
run: yarn dlx pkg-pr-new publish --compact './packages/*'

.github/workflows/pkg-size.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Package Size Report
2+
3+
on:
4+
- pull_request
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
pkg-size-report:
12+
name: Package Size Report
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
18+
19+
- name: Package Size Report
20+
uses: pkg-size/action@a637fb0897b6f14f18e776d8c3dbccb34a1ad27b # v1
21+
continue-on-error: true
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,24 @@ jobs:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup pnpm
20-
uses: pnpm/action-setup@v4
21-
2219
- name: Setup Node.js LTS
2320
uses: actions/setup-node@v4
2421
with:
2522
node-version: lts/*
26-
cache: pnpm
23+
cache: yarn
2724

2825
- name: Install Dependencies
29-
run: pnpm i
30-
31-
- name: Build
32-
run: pnpm build
26+
run: yarn --immutable
3327

3428
- name: Create Release Pull Request or Publish to npm
3529
id: changesets
3630
uses: changesets/action@v1
3731
with:
3832
commit: 'chore: release package(s)'
3933
title: 'chore: release package(s)'
40-
# This expects you to have a script called release which does a build for your packages and calls changeset publish
41-
publish: pnpm release
34+
publish: yarn release
35+
version: yarn run version
4236
env:
4337
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
38+
NPM_CONFIG_PROVENANCE: true
4439
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/size-limit.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,17 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- name: Setup pnpm
15-
uses: pnpm/action-setup@v4
16-
1714
- name: Setup Node.js LTS
1815
uses: actions/setup-node@v4
1916
with:
2017
node-version: lts/*
21-
cache: pnpm
18+
cache: yarn
2219

2320
- name: Install Dependencies
24-
run: pnpm i
21+
run: yarn i
2522

2623
- uses: andresz1/size-limit-action@v1
2724
with:
2825
github_token: ${{ secrets.GITHUB_TOKEN }}
2926
skip_step: install
30-
script: pnpm size-limit --json
27+
script: yarn size-limit --json

0 commit comments

Comments
 (0)