Skip to content

Commit 0ec8131

Browse files
committed
ci: Update GitHub Actions workflows to use actions/checkout@v4 and npm install
1 parent 3002e5c commit 0ec8131

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/auto_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
# Install dependencie using the runners shell
2727
- name: Install dependencies

.github/workflows/release.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,8 @@ jobs:
1919
- name: Checkout code
2020
uses: actions/checkout@v4
2121

22-
- name: Setup Node.js
23-
uses: actions/setup-node@v3
24-
with:
25-
node-version: "lts/*"
26-
2722
- name: Install dependencies
28-
run: npm ci
23+
run: npm install
2924

3025
- name: Build NPM package
3126
run: npm run build

.releaserc

Whitespace-only changes.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "next-css-obfuscator",
3+
"version": "3.0.0-b1",
34
"description": "A package deeply inspired by PostCSS-Obfuscator but for Next.js.",
45
"main": "dist/index.js",
56
"type": "commonjs",

0 commit comments

Comments
 (0)