Skip to content

Commit 6c2c68e

Browse files
authored
chore: housekeeping, bump all (dev) deps (#37)
1 parent f98d877 commit 6c2c68e

33 files changed

+13840
-14541
lines changed

.changeset/angry-socks-drive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"ab64": patch
3+
---
4+
5+
chore: housekeeping, bump all (dev) deps

.codesandbox/ci.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"node": "16",
3-
"installCommand": "codesandbox:install",
2+
"node": "20",
43
"sandboxes": []
54
}

.eslintignore

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

.eslintrc

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

.github/workflows/ci.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,43 +4,47 @@ 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 }}
1014
strategy:
1115
matrix:
1216
node:
13-
- 14
14-
- 16
1517
- 18
18+
- 20
19+
- 22
1620
os:
1721
- macos-latest
1822
- windows-latest
1923
- ubuntu-latest
24+
fail-fast: false
2025
runs-on: ${{ matrix.os }}
2126
steps:
2227
- name: Checkout Repo
23-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2429

2530
- name: Setup pnpm
26-
uses: pnpm/action-setup@v2
27-
with:
28-
version: latest
31+
uses: pnpm/action-setup@v4
2932

3033
- name: Setup Node.js ${{ matrix.node }}
31-
uses: actions/setup-node@v3
34+
uses: actions/setup-node@v4
3235
with:
3336
node-version: ${{ matrix.node }}
3437
cache: pnpm
3538

3639
- name: Install Dependencies
37-
run: pnpm i
40+
run: pnpm i --frozen-lockfile
3841

3942
- name: Build, Lint and Test
4043
run: pnpm run-s build lint test
4144
env:
42-
EFF_NO_LINK_RULES: true
4345
PARSER_NO_WATCH: true
4446

4547
- name: Codecov
46-
uses: codecov/codecov-action@v3
48+
uses: codecov/codecov-action@v5
49+
with:
50+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
branches:
99
- main
1010

11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
analyze:
1317
name: Analyze
@@ -25,14 +29,14 @@ jobs:
2529

2630
steps:
2731
- name: Checkout repository
28-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
2933

3034
- name: Initialize CodeQL
31-
uses: github/codeql-action/init@v2
35+
uses: github/codeql-action/init@v3
3236
with:
3337
languages: ${{ matrix.language }}
3438

3539
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@v2
40+
uses: github/codeql-action/analyze@v3
3741
with:
3842
category: /language:${{matrix.language}}

.github/workflows/pages.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,31 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
jobs:
913
deploy:
1014
runs-on: ubuntu-latest
1115
steps:
1216
- name: Checkout Repo
13-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1418

1519
- name: Setup pnpm
16-
uses: pnpm/action-setup@v2
17-
with:
18-
version: latest
20+
uses: pnpm/action-setup@v4
1921

20-
- name: Setup Node.js 16
21-
uses: actions/setup-node@v3
22+
- name: Setup Node.js LTS
23+
uses: actions/setup-node@v4
2224
with:
23-
node-version: 16
25+
node-version: lts/*
2426
cache: pnpm
2527

2628
- name: Install Dependencies
27-
run: pnpm i
29+
run: pnpm i --frozen-lockfile
2830

2931
- name: Build Docs
30-
run: yarn docs:build
32+
run: pnpm docs:build
3133

3234
- name: Add misc files
3335
run: |

.github/workflows/release.yml

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

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
812
jobs:
913
release:
1014
name: Release
1115
runs-on: ubuntu-latest
1216
steps:
1317
- name: Checkout Repo
14-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1519
with:
1620
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1721
fetch-depth: 0
1822

1923
- name: Setup pnpm
20-
uses: pnpm/action-setup@v2
21-
with:
22-
version: latest
24+
uses: pnpm/action-setup@v4
2325

24-
- name: Setup Node.js 16
25-
uses: actions/setup-node@v3
26+
- name: Setup Node.js LTS
27+
uses: actions/setup-node@v4
2628
with:
27-
node-version: 16
29+
node-version: lts/*
2830
cache: pnpm
2931

3032
- name: Install Dependencies
31-
run: pnpm i
33+
run: pnpm i --frozen-lockfile
3234

3335
- name: Create Release Pull Request or Publish to npm
3436
uses: changesets/action@v1

.github/workflows/size-limit.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +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:
12-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1317

1418
- name: Setup pnpm
15-
uses: pnpm/action-setup@v2
16-
with:
17-
version: latest
19+
uses: pnpm/action-setup@v4
1820

19-
- name: Setup Node.js 16
20-
uses: actions/setup-node@v3
21+
- name: Setup Node.js LTS
22+
uses: actions/setup-node@v4
2123
with:
22-
node-version: 16
24+
node-version: lts/*
2325
cache: pnpm
2426

2527
- name: Install Dependencies
26-
run: pnpm i
28+
run: pnpm i --frozen-lockfile
2729

2830
- name: Build MiniApp Entry
2931
run: pnpm mini-app

.github/workflows/vercel.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ on:
44
push:
55
branches:
66
- main
7-
# eslint-disable-next-line yml/no-empty-mapping-value
8-
pull_request_target:
7+
pull_request_target: null
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
912

1013
jobs:
1114
deploy:
1215
runs-on: ubuntu-latest
1316
steps:
14-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1518

1619
- name: Check Branch
1720
id: branch

0 commit comments

Comments
 (0)