From ece3145e5a9bc7b3819707b96025e133b74c6c18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A6=8A=E5=8E=9F=E6=98=8C=E5=BD=A6?= Date: Sun, 21 Apr 2024 18:22:15 +0900 Subject: [PATCH] fix(test): update run environment --- .github/workflows/validation.yml | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 890d1143..756693dc 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -8,12 +8,12 @@ on: [push, pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: lint: - runs-on: macos-latest + runs-on: macos-14 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 18 - run: npm install - run: npm run lint @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 18 - run: npm install - run: npm run lint @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 18 - run: npm install - run: npm run verify:web @@ -48,16 +48,16 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 18 - run: npm install # - run: npm run verify:android verify-ios: - runs-on: macos-latest + runs-on: macos-14 steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '16' + node-version: 18 - run: npm install - run: npm run verify:ios diff --git a/package.json b/package.json index 6887b08f..2a0e6232 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "types": "dist/esm/index.d.ts", "unpkg": "dist/plugin.js", "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "files": [ "android/src/main/",