summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-25 03:10:39 -0500
committerGitHub <noreply@github.com>2023-12-25 08:10:39 +0000
commit89994427c7dfb25e7879948061a531f34cb1e9ab (patch)
tree066ab819ae0eeaa401b5a4e77dc89f45c2989e0c /.github/workflows
parentc4b81956ea80a51fb6a52d0a2f516c71840fbd37 (diff)
Add engines to package.json (#442)
* Add engines to package.json * Fix spacing * Replace node version file
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/create-prerelease-on-tag.yml2
-rw-r--r--.github/workflows/playwright.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 14e909f0..4ea950b8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
- node-version-file: ".node-version"
+ node-version-file: "package.json"
- name: Install dependencies
run: npm ci
diff --git a/.github/workflows/create-prerelease-on-tag.yml b/.github/workflows/create-prerelease-on-tag.yml
index e2758a19..beb3ff63 100644
--- a/.github/workflows/create-prerelease-on-tag.yml
+++ b/.github/workflows/create-prerelease-on-tag.yml
@@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
- node-version-file: ".node-version"
+ node-version-file: "package.json"
- name: Install dependencies
run: npm ci
diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml
index 9c7bea57..613dffc7 100644
--- a/.github/workflows/playwright.yml
+++ b/.github/workflows/playwright.yml
@@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: "npm"
- node-version-file: ".node-version"
+ node-version-file: "package.json"
- name: Install dependencies
run: npm ci