From cd9c9d8e965a3bf0e132ec651a32372f87b0632e Mon Sep 17 00:00:00 2001 From: Brian Birtles Date: Thu, 12 Oct 2023 12:41:15 +0900 Subject: [PATCH] chore: update workflow --- .github/workflows/push.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index dc73113..a3b639d 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -11,17 +11,16 @@ jobs: name: Test steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup node - uses: actions/setup-node@v2.4.0 + - uses: actions/checkout@v4.1.0 + - uses: actions/setup-node@v3.8.1 with: - node-version: "14.x" + node-version: 18 + cache: yarn - name: Build run: | yarn install yarn build - - name: Run tests + + - name: Unit tests run: yarn test