Skip to content

Commit 04b9560

Browse files
committed
chore: bump all (dev)Dependencies
1 parent c0e0f64 commit 04b9560

31 files changed

+17738
-21527
lines changed

.codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"node": "18",
2+
"node": "20",
33
"installCommand": "codesandbox:install",
44
"sandboxes": []
55
}

.github/workflows/ci.yml

Lines changed: 13 additions & 10 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 }}
@@ -12,33 +16,32 @@ jobs:
1216
node:
1317
- 18
1418
- 20
19+
- 22
20+
- 24
1521
os:
1622
- macos-latest
17-
# https://github.com/ai/size-limit/issues/336
18-
# - windows-latest
23+
- windows-latest
1924
- ubuntu-latest
2025
runs-on: ${{ matrix.os }}
2126
steps:
2227
- name: Checkout Repo
2328
uses: actions/checkout@v4
2429

25-
- name: Setup pnpm
26-
uses: pnpm/action-setup@v2
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 typecov
40+
run: yarn run-s build lint test typecov
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/release.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
permissions:
13+
contents: write
14+
id-token: write
15+
pull-requests: write
16+
817
jobs:
918
release:
1019
name: Release
@@ -16,26 +25,24 @@ jobs:
1625
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1726
fetch-depth: 0
1827

19-
- name: Setup pnpm
20-
uses: pnpm/action-setup@v2
21-
2228
- name: Setup Node.js LTS
23-
uses: actions/setup-node@v3
29+
uses: actions/setup-node@v4
2430
with:
2531
node-version: lts/*
26-
cache: pnpm
32+
cache: yarn
2733

2834
- name: Install Dependencies
29-
run: pnpm i
35+
run: yarn --immutable
3036

3137
- name: Create Release Pull Request or Publish to npm
3238
id: changesets
3339
uses: changesets/action@v1
3440
with:
35-
publish: pnpm release
36-
version: pnpm run version
3741
commit: 'chore: release package(s)'
3842
title: 'chore: release package(s)'
43+
publish: yarn release
44+
version: yarn run version
3945
env:
4046
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
NPM_CONFIG_PROVENANCE: true
4148
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/size-limit.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,27 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
jobs:
913
size-limit:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- uses: actions/checkout@v4
1317

14-
- name: Setup pnpm
15-
uses: pnpm/action-setup@v2
16-
1718
- name: Setup Node.js LTS
1819
uses: actions/setup-node@v4
1920
with:
2021
node-version: lts/*
21-
cache: pnpm
22+
cache: yarn
2223

2324
- name: Install Dependencies
24-
run: pnpm i
25+
run: yarn --immutable
2526

2627
- uses: andresz1/size-limit-action@v1
2728
with:
2829
github_token: ${{ secrets.GITHUB_TOKEN }}
2930
skip_step: install
30-
script: pnpm size-limit --json
31+
script: yarn size-limit --json

.github/workflows/vercel.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
push:
55
branches:
66
- main
7-
pull_request:
7+
pull_request: null
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
812

913
jobs:
1014
deploy:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
*.log
22
.*cache
3+
.yarn/*
4+
!.yarn/releases
5+
!.yarn/plugins
36
.type-coverage
47
.vercel
58
coverage

.lintstagedrc.cjs

Lines changed: 0 additions & 1 deletion
This file was deleted.

.nano-staged.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from '@1stg/nano-staged/tsc'

.npmrc

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

0 commit comments

Comments
 (0)