Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[修正] nodeバージョンの更新 #112

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/playwright-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
registry-url: https://registry.npmjs.org
always-auth: true
scope: '@xpadev-net'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: setup Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
registry-url: "https://registry.npmjs.org"
# Runs a single command using the runners shell
- name: init
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.dts.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
import dts from "rollup-plugin-dts";
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import babel from "@rollup/plugin-babel";
import typescript from "@rollup/plugin-typescript";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
const banner = `/*!
Expand Down
Loading