From 429d2f3e01808b6b0f0f714a6fae4471df47d816 Mon Sep 17 00:00:00 2001 From: YeonJuan Date: Thu, 19 Sep 2024 02:20:24 +0900 Subject: [PATCH] update yarn --- .github/workflows/main.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 404c8ed..6cbfb8e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,17 +5,15 @@ jobs: name: CI runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: set node.js 16.x - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - name: set node.js 20.x + uses: actions/setup-node@v4 with: - node-version: 16.x - - uses: borales/actions-yarn@v4 - with: - cmd: install - - uses: borales/actions-yarn@v4 - with: - cmd: check:all + node-version: 20.x + - name: Install + run: yarn install --immutable + - name: Check + run: yarn run check:all - name: Code coverage report uses: codecov/codecov-action@v2 with: