From c1c56fe95f56804486b937ebc73efadd867b684b Mon Sep 17 00:00:00 2001 From: Vinson Chuong Date: Sun, 26 Feb 2023 17:16:22 -0800 Subject: [PATCH] chore(ci): Use latest vesion of Node.js --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da3e696..60374ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,10 +4,10 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: current cache: yarn - run: yarn - run: yarn test