From 15a2140196119aad5e319e9bd09978bc94913de7 Mon Sep 17 00:00:00 2001 From: Arushi Kesarwani Date: Tue, 11 Jul 2023 11:59:09 -0700 Subject: [PATCH 1/2] Changing node version missed during metro dependencies upgrade --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d27ba553e..c0dc7d318 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18] + node-version: [18, 20] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -44,7 +44,7 @@ jobs: name: E2E Tests strategy: matrix: - node-version: [18] + node-version: [18, 20] os: [ubuntu-latest, macos-latest, windows-2019] runs-on: ${{ matrix.os }} steps: From 720c31597b69c0d858af3fb0531b7c043056f7ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Wed, 20 Sep 2023 17:23:54 +0200 Subject: [PATCH 2/2] ci: use node 20 to run linter --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0dc7d318..0573578a7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies run: yarn --frozen-lockfile