Skip to content

Commit eddc8f5

Browse files
committed
chore: ci upgrade
1 parent 4829187 commit eddc8f5

File tree

5 files changed

+37
-18
lines changed

5 files changed

+37
-18
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, windows-latest, macos-latest]
18-
node-version: [16, 18]
18+
node-version: [18, 20]
1919
runs-on: ${{ matrix.os }}
2020
# To use Remote Caching, uncomment the next lines and follow the steps below.
2121
# env:
@@ -24,17 +24,17 @@ jobs:
2424

2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 2
3030

31-
- uses: pnpm/action-setup@v2
31+
- uses: pnpm/action-setup@v3
3232

3333
- name: Setup Node.js environment
34-
uses: actions/setup-node@v3
34+
uses: actions/setup-node@v4
3535
with:
3636
node-version: ${{ matrix.node-version }}
37-
cache: 'pnpm'
37+
cache: "pnpm"
3838

3939
- name: Install dependencies
4040
run: pnpm install
@@ -49,4 +49,4 @@ jobs:
4949
- name: Test
5050
run: pnpm test
5151

52-
- uses: codecov/codecov-action@v3
52+
- uses: codecov/codecov-action@v4

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

19-
- uses: pnpm/action-setup@v2
19+
- uses: pnpm/action-setup@v3
2020

2121
- name: Setup Node.js environment
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 20
2525
cache: 'pnpm'
2626

2727
- name: Install Dependencies
@@ -48,4 +48,4 @@ jobs:
4848
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4949
npm_config_registry: https://registry.npmjs.org
5050

51-
- uses: codecov/codecov-action@v3
51+
- uses: codecov/codecov-action@v4

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"name": "tailwindcss-mangle",
3+
"type": "module",
34
"version": "2.2.2",
45
"private": true,
5-
"type": "module",
66
"workspaces": [
77
"apps/*",
88
"packages/*"
99
],
10+
"packageManager": "[email protected]",
11+
"engines": {
12+
"node": ">=18.0.0"
13+
},
1014
"scripts": {
1115
"build": "pnpm run -r build",
1216
"dev": "pnpm -r run dev",
@@ -52,9 +56,5 @@
5256
"unbuild": "^2.0.0",
5357
"unplugin-tailwindcss-mangle": "workspace:*",
5458
"vitest": "^1.6.0"
55-
},
56-
"engines": {
57-
"node": ">=18.0.0"
58-
},
59-
"packageManager": "[email protected]"
60-
}
59+
}
60+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

0 commit comments

Comments
 (0)