From 8a5cec7907ffd00b8211b0f32e7ac6dc0a9dd2bf Mon Sep 17 00:00:00 2001 From: Tianyu Yao Date: Mon, 6 Jan 2025 17:49:55 -0800 Subject: [PATCH] Use Node V20 in Github CI The CI job has been failing. Use the same version as what the relay repo is using https://github.com/facebook/relay/blob/main/.github/workflows/ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6da219d5..46875b40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12.x + node-version: 20.x - name: Install dependencies run: yarn install --frozen-lockfile - name: Check formatting