Skip to content

Commit

Permalink
CI の pnpm を 9 に上げる
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Apr 26, 2024
1 parent e10e54d commit 729f0b0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18", "20", "21"]
node: ["18", "20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v3
with:
version: 8
version: 9
- run: pnpm --version
- run: pnpm install
- run: pnpm run build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# node: ["18", "20", "21"]
# node: ["18", "20", "22"]
node: ["20"]
# browser: ["chromium", "firefox", "webkit"]
browser: ["chromium"]
Expand All @@ -34,7 +34,7 @@ jobs:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v3
with:
version: 8
version: 9
- run: pnpm --version
- run: pnpm install
- run: pnpm run build
Expand Down
8 changes: 5 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

## develop

- [UPDATE] Biome 1.6.4 に上げる
- [UPDATE] CI の pnpm を 9 に上げる
- @voluntas
- [UPDATE] Biome 1.7.1 に上げる
- @voluntas
- [ADD] `tsc --noEmit` で型チェックを行うようにする
- @voluntas
Expand Down Expand Up @@ -39,8 +41,8 @@
- e2ee と messaging は一旦 skip で追加
- @voluntas
- [ADD] .github/workflows/e2e-test.yml を追加する
- Node.js 18,20,21 で E2E テストを実行する
- Chromium E2E テストを実行する
- Node.js {18,20,22} で E2E テストを実行する
- Chromium E2E テストを実行する
- @voluntas
- [FIX] examples 実行時に環境変数が設定されていない場合は空文字にする
- 対象項目は SORA_CHANNEL_ID_PREFIX, VITE_SORA_CHANNEL_ID_PREFIX, VITE_ACCESS_TOKEN
Expand Down

0 comments on commit 729f0b0

Please sign in to comment.